Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Javascript > Submit Form

Reply
Thread Tools

Submit Form

 
 
Matthew256
Guest
Posts: n/a
 
      10-30-2006
How can I submit this form on criteriaBlur?

<form>
<input type="text" name="criteria1" onblur="criteriaBlur(this);">
</form>

function criteriaBlur( obj ) {
if( ... ) {
//submit form
}
}

 
Reply With Quote
 
 
 
 
Tim Slattery
Guest
Posts: n/a
 
      10-30-2006
"Matthew256" <> wrote:

>How can I submit this form on criteriaBlur?
>
><form>
><input type="text" name="criteria1" onblur="criteriaBlur(this);">
></form>
>
>function criteriaBlur( obj ) {
>if( ... ) {
>//submit form
>}
>}



<form id="myform">
<input type="text" name="criteria1" onblur="criteriaBlur(this);">
</form>

function criteriaBlur( obj )
{
document.getElementById("myform").submit();
}

--
Tim Slattery

 
Reply With Quote
 
 
 
 
Randy Webb
Guest
Posts: n/a
 
      10-30-2006
Matthew256 said the following on 10/30/2006 11:56 AM:
> How can I submit this form on criteriaBlur?
>
> <form>
> <input type="text" name="criteria1" onblur="criteriaBlur(this);">
> </form>
>
> function criteriaBlur( obj ) {
> if( ... ) {
> //submit form
> }
> }


Give your form an ID and then submit() the form:

document.forms['formID'].submit();

But, for the record, that is a dumb way to submit a form.

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
 
Reply With Quote
 
Matthew256
Guest
Posts: n/a
 
      10-30-2006
Oh bother. I was hoping there was a cleaner way.
Thanks for your help!

On Oct 30, 12:23 pm, Tim Slattery <Slatter...@bls.gov> wrote:
> "Matthew256" <PRESENT...@gmail.com> wrote:
> >How can I submit this form on criteriaBlur?

>
> ><form>
> ><input type="text" name="criteria1" onblur="criteriaBlur(this);">
> ></form>

>
> >function criteriaBlur( obj ) {
> >if( ... ) {
> >//submit form
> >}
> >}<form id="myform">

> <input type="text" name="criteria1" onblur="criteriaBlur(this);">
> </form>
>
> function criteriaBlur( obj )
> {
> document.getElementById("myform").submit();
>
> }--
> Tim Slattery
> Slatter...@bls.gov


 
Reply With Quote
 
Randy Webb
Guest
Posts: n/a
 
      10-30-2006
Matthew256 said the following on 10/30/2006 12:48 PM:

Answer:It destroys the order of the conversation
Question: Why?
Answer: Top-Posting.
Question: Whats the most annoying thing on Usenet?

> Oh bother. I was hoping there was a cleaner way.


"Cleaner way"? Sure:

obj.form.submit();

> Thanks for your help!


Thanks for not top-posting next time.

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Convert form to submit on load instead of clicking submit button? Network-Man HTML 5 07-07-2012 12:06 PM
submit 1 form to 2 servers or 2 forms to 2 server (1 form each) on 1 submit abansal.itp@gmail.com Javascript 3 06-23-2007 07:29 AM
Forms with multiple submit buttons vs 'form' objects with single 'submit' methods neil.fitzgerald@ic.ac.uk Python 4 04-14-2006 04:58 PM
submit the form data to the popup window without a submit button jrefactors@hotmail.com HTML 2 01-01-2005 06:07 AM
Form submit - hitting enter does not trigger Submit button ASP General 2 10-25-2004 03:37 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57