No , please tell more on using    jQuery 1.4 live/delegate,  you have any
example ?


ok one more easy solution may be if I add the function in onclick attribute
of the link  , but I dont know to write jquery function in onclick attribute
, please tell me how can I write the jquery function in onclick attribute ?

http://n4.nabble.com/file/n1903859/2010-04-15_121948.png 
here is the function
                                                        
$("a.showHidePrograms").click(
                                                                function () {
                                                                   var $div= 
$(this).parent().next("div"); 
                                                                   
if($div.attr("class") == 'hide'){
                                                                        
$div.attr("class","show");
                                                                   }else{
                                                                      
$div.attr("class","hide");
                                                                   }
                                                                }   
                                                        );

-- 
View this message in context: 
http://n4.nabble.com/jqery-not-getting-called-after-ajax-refresh-tp1872270p1903859.html
Sent from the Wicket - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to