[jQuery] Re: Live() event doesnot refresh the class of the event which was changed dynamically.

2009-07-06 Thread Sanam Maharjan
Hello, Thanks for the prompt reply. Yes I have used the newclass and tried. But the problem remains same. I think I have figured out the effecting place. I have used the jeditable plugin for the editable as follows. $('.plus'+num).live(mouseover, function(){

[jQuery] Re: Live() event doesnot refresh the class of the event which was changed dynamically.

2009-07-05 Thread Nic Hubbard
Pretty sure that you have to create a new .live() event for your expected class. So, you would need to do: $(.newClass).live(mouseover, function(){ //clickable function here.. }); On Jul 5, 12:30 am, Sanam kcssm2...@gmail.com wrote: Hello,      I got

[jQuery] Re: Live() event doesnot refresh the class of the event which was changed dynamically.

2009-07-05 Thread Josh Powell
Also, be very, very careful with using mouseover, mouseout, or mousemove with live events. The way live events work is to put an event handler on the document and catch events as they bubble up and check them against the selector. So, when using mouseover live events, you are executing a