[jQuery] Re: EVENT BUBBLING - IE6 - ARRGGGHHH!!

2008-06-10 Thread Michael
$(form).*bind*(submit, function(event){ event.stopPropagation(); }); better :-)

[jQuery] Re: EVENT BUBBLING - IE6 - ARRGGGHHH!!

2008-06-10 Thread Michael Stuhr
Joe schrieb: // To prevent event bubbling, return false (right?) return false; shouldn't that be event.preventDefault(); like $(form).*bind*(submit, function(event){ event.preventDefault(); }); ? micha

[jQuery] Re: EVENT BUBBLING - IE6 - ARRGGGHHH!!

2008-06-10 Thread Joe
Michael, Thanks for the reply. Both solutions work, but return false works as well. It turns out that the real issue was that the cookie on IE6 in a localhost environment cannot be set, well, at least I have been unsuccessful. I am running Multiple IEs on one box and IE Tester on another and

[jQuery] Re: EVENT BUBBLING - IE6 - ARRGGGHHH!!

2008-06-10 Thread Michael Stuhr
Joe schrieb: I am running Multiple IEs on one box and IE Tester on another and neither will allow me to set the cookie in IE6. IE7 is fine. afaik: that's not a bug, that's a feature. micha