[jQuery] Re: selectable + anchor not working

2009-02-26 Thread How
after so much trouble I found out that jQuery 1.3 have propagation of events. thats the reason FF doesnt work. but Opera works differently On Feb 26, 12:47 pm, How wrote: > Hi > > I tried the code again and still doesnt work in Firefox 3 > I am using different jquery than yours

[jQuery] Re: selectable + anchor not working

2009-02-25 Thread How
).selectable(); >       $('a').click(function(){ >         alert('test'); >       }); >   }); >   >   >   >     >       test >     >   > > [/code] > > On 23 fév, 19:36, How wrote: > > > > > Hi > > > need some help please. anchor in

[jQuery] selectable + anchor not working

2009-02-23 Thread How
Hi need some help please. anchor in inside div is not working in firefox when div is selectable, but works fine in opera. test $('.column').selectable(); $('a').click(function(){ alert('test'); });