How To Submit A Form Without A Submit Button
Posted On Sat Jan 24, 2009 By wallpaperama In Javascipt Forums And Other Related Topics Discussion About Javascript Progamming Forums
today i was wondering how you can make a web form without using a submit button.
normally this is what i use for my web forms:
<input type="submit" name="submit" value"Submit">
but how about if instead of having a button, i can have a link? well, if you are wondering how you can do it, you can do it using javascript. you can use this code as an example:
HTML CODE:
normally this is what i use for my web forms:
<input type="submit" name="submit" value"Submit">
but how about if instead of having a button, i can have a link? well, if you are wondering how you can do it, you can do it using javascript. you can use this code as an example:
HTML CODE:
<form name="myform" action="">
Search: <input type='text' name='query'>
<A href="javascript: submitform()">Search</A>
</form>
<SCRIPT language="JavaScript">
function submitform()
{
document.myform.submit();
}
</SCRIPT>
Search: <input type='text' name='query'>
<A href="javascript: submitform()">Search</A>
</form>
<SCRIPT language="JavaScript">
function submitform()
{
document.myform.submit();
}
</SCRIPT>
Related Content
Information
Forums »
Javascipt Forums And Other Related Topics Discussion About Javascript Progamming »
How To Submit A Form Without A Submit Button
Javascipt Forums And Other Related Topics Discussion About Javascript Progamming »
How To Submit A Form Without A Submit Button
Title: How To Submit A Form Without A Submit Button
Description: How To Submit A Form Without A Submit Button
Tags: how ,to ,submit ,a ,form ,without ,a ,submit ,button
Info: This Post Has Been Viewed 0 Times Since
Date: Sat Jan 24, 2009
Author wallpaperama Received 1 Replies #817
Date: Sat Jan 24, 2009
Author wallpaperama Received 1 Replies #817
Share
URL: 

Embed: 

To embed this topic, just copy the code from the "Embed" box. Once you've copied the code, just paste it into your website or blog to embed it
BBCODE:: 

BBCODE is use on forums. You can put this code on all your BBCODE enabled forums like PhpBB, vBulletin® and others. Just Copy and Paste this code on your Posts and Replies on your forums
wallpaperama | Wallpapers | Forums | Terms Of Service
copyright © 2013 wallpaperama - All Rights Reserved - Last Updated Mon May 06, 2013 (-8 GMT)
Powered by: Webune Forums V5
copyright © 2013 wallpaperama - All Rights Reserved - Last Updated Mon May 06, 2013 (-8 GMT)
Powered by: Webune Forums V5
