[jQuery] Re: Submit a form automatically

2008-12-19 Thread Adam
I was planning to submit the form in a jquery dialog, read the response, and then put the response text in a new browser window. I'm probably better off just scrapping my plan and sticking to opening the form in a new window and submitting in the same window without using ajax. thanks. On Dec 1

[jQuery] Re: Submit a form automatically

2008-12-19 Thread Mike Alsup
> These suggestions helped, but I now I can't figure out how to submit a > form with a URL of an external site... i.e. my site ishttp://www.abc.com/ > , but I want to submit a form tohttp://www.123.com/ > > Is this possible in ajax? No, not with ajax, but the code I posted didn't use ajax. It ju

[jQuery] Re: Submit a form automatically

2008-12-19 Thread Adam
These suggestions helped, but I now I can't figure out how to submit a form with a URL of an external site... i.e. my site is http://www.abc.com/ , but I want to submit a form to http://www.123.com/ Is this possible in ajax? Thanks, A. On Dec 13, 8:22 am, Mike Alsup wrote: > > I have a dynami

[jQuery] Re: Submit a form automatically

2008-12-13 Thread Mike Alsup
> I have a dynamically created form that I'd like to submit > automatically after it loads.  It doesn't look like forms have an > onload event.  I would use the window onload, but the form isn't > necessarily around when the window loads - it is created later in a > jquery popup. > > Any suggestio

[jQuery] Re: Submit a form automatically

2008-12-12 Thread Liam Potter
you could do something like this... $(document).ready(function () { document.NAME_OF_FORM_HERE.submit(); }); Rick Faircloth wrote: Sorry I don't have an answer for you, Adam. (I'm new to js and jQuery) But I was just curious as to what you were trying to do with a dynamically created (and d

[jQuery] Re: Submit a form automatically

2008-12-12 Thread Rick Faircloth
Sorry I don't have an answer for you, Adam. (I'm new to js and jQuery) But I was just curious as to what you were trying to do with a dynamically created (and dynamically filled?) form that submits immediately? Rick > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery..

[jQuery] Re: Submit a form automatically

2008-12-12 Thread Jim D
Do you have an example of the code you're using to load the form? On Dec 12, 11:02 am, Adam wrote: > I have a dynamically created form that I'd like to submit > automatically after it loads.  It doesn't look like forms have an > onload event.  I would use the window onload, but the form isn't >