http://docs.jquery.com/FAQ#Why_do_my_events_stop_working_after_an_AJAX_request.3F
-- Ariel Flesler http://flesler.blogspot.com On Aug 26, 12:43 pm, Will <[EMAIL PROTECTED]> wrote: > Ok Diego, I found a plugin wich works perfectly : > "jquery live_bind" > > an example of use : > > $.live_bind("a.popup_link", 'click', > function(){ > $("#"+popup+"_popup").css("margin-left","-"+ > (width.substr(0,width.length - 2) / 2)+"px"); > $("#"+popup+"_popup").fadeIn("slow"); > } > ); > > ... perfect ! : )