[jQuery] Re: Noob Q. Can't get jQuery working

2009-01-02 Thread spstieng
I found and fixed the problem for Wordpress. In the header, I had the inline code: Code: var $j = jQuery.noConflict(); $j(function() { $j('#tab-panel1 ul').tabs({ fxFade: true, fxSpeed: 'fast' }); $j('#tab-panel2 ul').tabs({ fxFade: true, fxSpeed: 'fast' });

[jQuery] Re: Noob Q. Can't get jQuery working

2009-01-01 Thread Ricardo Tomasi
I think Wordpress loads prototype.js as well, try protecting your jQuery script: jQuery.noConflict()(function(){ $('a').click(... }); On Jan 1, 7:29 pm, spstieng wrote: > Tha path is correct. I use FireBug to debug the javascript and I can > see the jQuery script executing. > I was executi

[jQuery] Re: Noob Q. Can't get jQuery working

2009-01-01 Thread spstieng
Tha path is correct. I use FireBug to debug the javascript and I can see the jQuery script executing. I was executing this code inside Wordpress CMS and Drupal CMS. To test further, I created a test site tha only contains the index.php It worked perfectly. When debugging I see that it first call

[jQuery] Re: Noob Q. Can't get jQuery working

2009-01-01 Thread Matt Quackenbush
Probably because the path to jQuery is incorrect and therefore jQuery is not actually loaded. On Thu, Jan 1, 2009 at 5:26 AM, spstieng wrote: > > Now, clicking Test B links dislays the 'Hello World' alert. > But nothing happends when I click Test A. Why is that? >