Hi,
I'm sure there is a very simple answer to this question.
I have a form on which I will have several regular buttons. When one of these buttons are clicked it will pop up a window where the user can select a color for that value.
Is there a way to pass the name of the button to the popup page without using a submit button. I want to save the Submit for when I call the page based on these Properties that the user sets here.
Thanks for your time and any help you can provide,
Michael
I'm sure there is a very simple answer to this question.
I have a form on which I will have several regular buttons. When one of these buttons are clicked it will pop up a window where the user can select a color for that value.
Code:
<td><input type="text" id="MonthColor" name="MonthColor">
<input type="button" onclick="window.open('Colorbar.php','ColourIt', 'scrollbars, height=200,width=200');return true" onfocus="this.blur()" value="Month Color"></td>
Is there a way to pass the name of the button to the popup page without using a submit button. I want to save the Submit for when I call the page based on these Properties that the user sets here.
Thanks for your time and any help you can provide,
Michael