Oh, one more thing ... mine is being done when responding to a click
on a hyperlink.  I also had to kill the event (the hyperlink click):

        Event.stop(event);

Where event is the event from the hyperlink in my onClick handler.  My
form submit didn't work properly before adding this.

mrg


On Tue, Mar 30, 2010 at 8:42 AM, Michael Gentry <mgen...@masslight.net> wrote:
> I submit a form via JavaScript and it works in Safari, IE, and
> Firefox.  For me, I use:
>
> $('myFormID').submit();
>
>
> mrg
>
>
> On Tue, Mar 30, 2010 at 8:26 AM, LiborGMC <l.pre...@gmc.net> wrote:
>>
>> Hi,
>> thanks to issue with IE8
>> http://old.nabble.com/Error-in-tapestry.js-in-IE-8-ts27714386.html#a27904924
>> http://old.nabble.com/Error-in-tapestry.js-in-IE-8-ts27714386.html#a27904924
>> I removed all mixins and checkbox groups and I replaced them with simple
>> Javascript. But I struggling with strange problem on Opera 9.6 and Safari
>> 4.0.4. I'm not able submit form by Javascript on these browsers.
>> I've tried all well known possibilities like:
>> document.forms['paTableForm'].submit();
>> document.forms[0].submit();
>> document.paTableForm.submit();
>>
>> I've even created submit button and tried to fire click on it :
>> document.getElementById('submitTable').click();
>>
>> On IE8 , Firefox 3 and Chrome it works in every way. But in Opera and Safari
>> I'm not able to do so. Did anybody solve this issue? Can anybody help?
>>
>> Libor
>> --
>> View this message in context: 
>> http://old.nabble.com/submit-form-on-Safari-and-Opera-doesn%27t-work-tp28081757p28081757.html
>> Sent from the Tapestry - User mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
>> For additional commands, e-mail: users-h...@tapestry.apache.org
>>
>>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to