[jQuery] Re: Google Analytics breaks jQuery.

2008-12-17 Thread Kean
I think you have to publish some html to get more constructive responses On Dec 17, 7:31 am, simshaun wrote: > Thanks for the tip. I already am canceling the link's default action > however.  It is definitely the Google Analytics code on the page I'm > injecting that's causing it to break.  Afte

[jQuery] Re: Google Analytics breaks jQuery.

2008-12-17 Thread simshaun
Thanks for the tip. I already am canceling the link's default action however. It is definitely the Google Analytics code on the page I'm injecting that's causing it to break. After I remove Google Anaylitics from the injected page, it works fine. At the moment, I'm performing something like thi

[jQuery] Re: Google Analytics breaks jQuery.

2008-12-16 Thread Kean
$("a").click(function(){ do something // return false, this is jQuery's way of preventing default or bubbling return false; }); Hope this helps On Dec 16, 11:51 am, simshaun wrote: > I have a page where I am using jQuery's load function to inject HTML > into a div container. > > Right un