Hey there,
I have a page that has the submit button hidden until a selection is made.
It works perfectly.
However when I then change the button to be an image i.e. from
to
it breaks and return a javascript error "nextbutton is not defined".
Any clues on what I am doing wrong or is this just not possible?
Steve
- I have fun with telemarketers
I have a page that has the submit button hidden until a selection is made.
It works perfectly.
However when I then change the button to be an image i.e. from
Code:
<input type='submit' value='Next' name='nextbutton' id="nextbutton" style='visibility:hidden' >
Code:
<input type='image' src="/images/buttonnext.gif" value='Next' name='nextbutton' id="nextbutton" style='visibility:hidden' >
it breaks and return a javascript error "nextbutton is not defined".
Any clues on what I am doing wrong or is this just not possible?
Steve
- I have fun with telemarketers