[jQuery] Re: crazy if... !not working.

2009-06-23 Thread Liam Potter
nevermind, seen you already got this Liam Potter wrote: wouldn't it make more sense to do this $(function(){ $("a.thumb").fancybox(); }); umcosta wrote: Ok, here is what I want to do (extracted from: http://docs.jquery.com/Traversing/hasClass): http://code.jquery.com/jquery-latest.js"

[jQuery] Re: crazy if... !not working.

2009-06-23 Thread Liam Potter
wouldn't it make more sense to do this $(function(){ $("a.thumb").fancybox(); }); umcosta wrote: Ok, here is what I want to do (extracted from: http://docs.jquery.com/Traversing/hasClass): http://code.jquery.com/jquery-latest.js";> $(document).ready(function(){ $("div").click(

[jQuery] Re: crazy if... !not working.

2009-06-22 Thread Charlie
you're loading jquery twice. Remove top one, not recommended to  serve it from jquery site, put your animation script below your local  version of jquery should work then umcosta wrote: Ok, here is what I want to do (extracted from: http://docs.jquery.com/Traversing/hasClass): "http://co

[jQuery] Re: crazy if... !not working.

2009-06-22 Thread umcosta
ok guys... sorry for the inconvenient. Here is the solution in case someone needs: $(document).ready(function(){ $.localScroll(); $("a.thumb").fancybox(); }); On Jun 22, 9:29 pm, umcosta wrote: > Ok,