[jQuery] Re: Bug in my gallery, wtf?!

2009-04-14 Thread @oscargodson
That did the trick! Thanks a lot! A note though is that in Safari, you should put this.event or else it doesn't seem to fire. I did not try it though with function(event), but I just did function (). On Apr 14, 10:16 am, Rey Bango wrote: > Without having access to the code it's hard to test it

[jQuery] Re: Bug in my gallery, wtf?!

2009-04-14 Thread Rey Bango
Without having access to the code it's hard to test it but it looks like an event bubbling issue in the click binding for '#carousel_nav a'. Could you try this: $('#carousel_nav a').click(function(event) { event.stopPropagation(); c_slide($(this)); }); Rey... On Apr 13, 9:56 pm, "@oscargodson"