P
Peter
Hi all
Sorry, but this is probably the most stupid question you've come across in
here in a long time.
I have a form that submits.
If I use this: <button name="submit" value="Submit"
type="submit">Submit</button>
it works
If I use this: <input name="submit" style="width:126px; height:49px;"
type="image" src="images/sendup.gif"
onmouseover="this.src='images/senddown.gif'"
onmouseout="this.src='images/sendup.gif'" />
it works.
I am *trying* (for presentational purposes) to use a link from within a Spry
menu. I have tried everything I can find on the Web (href=blah, blah;
onclick=blah, blah - and that includes things like 'this.',
javascript:document, etc, etc. I've also tried '<input' etc, as the value
for the link) but it will not do it. The link is within the form to be
submitted and the form name is 'contactform'.
Any free clues will be *most* appreciated, as I've spent the best part of a
day (probably going around in circles) trying to get this to work, and I
suspect I'm about to get a rather large bill from Google.
Well what has worked for me, especially with multiple forms on a page
is...
<form name = "name_of_form" method = "post" action = "url_address">
<input type="image" src="address/name_of_image" alt="my form
description">
</form>