[jQuery] Re: SimpleModal wierdness

2008-10-04 Thread Prajwala Manchikatla
I use microsoft visual studio to debug errors on IE. it will point out the error at the exact place. I hope it helps you. On Sat, Oct 4, 2008 at 4:32 AM, Eric Martin <[EMAIL PROTECTED]> wrote: > > Actually, the error is being caused by the issue mentioned: > > http://groups.google.com/group/jquer

[jQuery] Re: SimpleModal wierdness

2008-10-03 Thread Eric Martin
Actually, the error is being caused by the issue mentioned: http://groups.google.com/group/jquery-dev/browse_thread/thread/aabf160d9980e52d/c74b19cc8c63f996 In SimpleModal, you can get around the issue by adding persist:true : $('#modalwikivideo').modal({persist:true}); That will prevent SimpleM

[jQuery] Re: SimpleModal wierdness

2008-10-03 Thread ricardobeat
IE events do not support the preventDefault method. With jQuery you can simply return false to cancel the event: $('.signup').click(function (e) { $('#modalwikivideo').modal(); return false; }); - ricardo On Oct 3, 7:28 am, willard <[EMAIL PROTECTED]> wrote: > Hi folk