Hi:

   I added mouse in and mouse out affect like this in $
(document).ready function

$(document).ready(function(){
        ....
            $(".StripMe tr").mouseover(function(){
                    $(this).addClass("over");
            });
            $(".StripMe tr").mouseout(function(){
                   $(this).removeClass("over");
            });
        ....
}

My question is if i used jquery post method to change some div
content, than this new div won't have mouseover and mouseout affect
anymore, is there anyway to achieve it. Is that needed to trigger
ready function again?

Another question is can anyone teach me how to add click and dblclick
event to the same div, because if i add both of them then it won't
trigger dblckick event.Thanks a lot. :-)

Best regards,
Ben

Reply via email to