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
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
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
3 matches
Mail list logo