Ask a Question related to Dreamweaver AppDev, Design and Development.
-
jip #1
Replacing Submit Button with text link?
Is there a way to accomplish the same thing as <input type='submit' value='Submit'> using an anchor tag?
jip Guest
-
trouble with replacing submit button with image
I have a simple login form and one submit button. I have replaced the standard grey button with a costum made button using the appropiate Form>Image... -
How do i create a link on the 'submit' button in a form?
Im having problems. When i test my web page and go to my form page and click submit, i get a 'No Page to Display' error. How do i make a link on... -
Submit Button Confirmation Text
Hi Rhonda, It looks like you were able to get your form to work. Maybe you can help me...I can't get the form to work. I keep getting the... -
Link acting as a submit button
Another option might be to use the heredoc syntax, but having php echo your html is not the most effecient. Just FYI. ... -
[PHP] Link acting as a submit button
Fixing the javascript that you specified still gave me the same errors... Got any more suggestions? Thanks for your help, Matt ... -
Michael Fesser #2
Re: Replacing Submit Button with text link?
.oO(jip)
Nope, not reliably. You could use an image instead if you don't like the>Is there a way to accomplish the same thing as <input type='submit'
>value='Submit'> using an anchor tag?
standard button, but don't forget the alt attribute to keep the form
accessible.
Micha
Michael Fesser Guest
-
Julian Roberts #3
Re: Replacing Submit Button with text link?
You can use javascript like
<a href="javascript:document.formname.submit()">foo</a>
--
Jules
[url]http://www.charon.co.uk/charoncart[/url]
Charon Cart 3
Shopping Cart Extension for Dreamweaver MX/MX 2004
Julian Roberts Guest
-
Michael Fesser #4
Re: Replacing Submit Button with text link?
.oO(Julian Roberts)
But don't do such stunts without providing a fallback in case JS is not>You can use javascript like
>
><a href="javascript:document.formname.submit()">foo</a>
available. Nothing is more annoying than a dead link, and IMHO the
javascript: pseudo-protocol is dead by design.
Micha
Michael Fesser Guest
-
Julian Roberts #5
Re: Replacing Submit Button with text link?
IMHO, the time to worry is when javascript is disabled by default in IE.
--
Jules
[url]http://www.charon.co.uk/charoncart[/url]
Charon Cart 3
Shopping Cart Extension for Dreamweaver MX/MX 2004
Julian Roberts Guest
-
Michael Fesser #6
Re: Replacing Submit Button with text link?
.oO(Julian Roberts)
Doing it properly so that it works regardless of the JS setting is quite>IMHO, the time to worry is when javascript is disabled by default in IE.
simple. It makes no sense to build sites that annoy some users because
of non-working links or other accessibility issues.
Micha
Michael Fesser Guest



Reply With Quote

