Re: jqery not getting called after ajax refresh

2010-05-04 Thread fachhoch
.1842946.n4.nabble.com/jqery-not-getting-called-after-ajax-refresh-tp1872270p2125879.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Re: jqery not getting called after ajax refresh

2010-05-04 Thread Jeremy Thomerson
(); }); }); I tried adding .focus() method but did not work. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/jqery-not-getting-called-after-ajax-refresh-tp1872270p2125879.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: jqery not getting called after ajax refresh

2010-05-04 Thread fachhoch
No this is not in ajaxrequest. It is just jquery. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/jqery-not-getting-called-after-ajax-refresh-tp1872270p2126099.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: jqery not getting called after ajax refresh

2010-05-04 Thread robert.mcguinness
print out some unique attribute of the element that last regains focus to console.debug, maybe http://api.jquery.com/focusin/ will help. - roberto -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/jqery-not-getting-called-after-ajax-refresh-tp1872270p2126168.html

Re: jqery not getting called after ajax refresh

2010-04-15 Thread fachhoch
: http://n4.nabble.com/jqery-not-getting-called-after-ajax-refresh-tp1872270p1893590.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Re: jqery not getting called after ajax refresh

2010-04-15 Thread robert.mcguinness
have you tried using jQuery 1.4 live/delegate handlers? they will attach events to elements even after initial dom load. -- View this message in context: http://n4.nabble.com/jqery-not-getting-called-after-ajax-refresh-tp1872270p1896790.html Sent from the Wicket - User mailing list archive

Re: jqery not getting called after ajax refresh

2010-04-15 Thread fachhoch
); } } ); -- 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

Re: jqery not getting called after ajax refresh

2010-04-15 Thread robert.mcguinness
-- View this message in context: http://n4.nabble.com/jqery-not-getting-called-after-ajax-refresh-tp1872270p1906384.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: jqery not getting called after ajax refresh

2010-04-15 Thread fachhoch
It works thanks . -- View this message in context: http://n4.nabble.com/jqery-not-getting-called-after-ajax-refresh-tp1872270p1908182.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e

jqery not getting called after ajax refresh

2010-04-09 Thread tubin gen
I added this jquery code to my page. $(document).ready(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);

Re: jqery not getting called after ajax refresh

2010-04-09 Thread Jeremy Thomerson
That's because your JS is only adding the onclick handler when the document is ready. Later, when you replace those links that you added the onclick handler to, they are replaced, and therefore no longer have the old onclick handlers. You will need to trigger the addition of your onclick handler

AW: jqery not getting called after ajax refresh

2010-04-09 Thread Stefan Lindner
[mailto:fachh...@gmail.com] Gesendet: Freitag, 9. April 2010 20:12 An: users Betreff: jqery not getting called after ajax refresh I added this jquery code to my page. $(document).ready(function(){ $(a.showHidePrograms).click( function () { var $div= $(this).parent().next

RE: jqery not getting called after ajax refresh

2010-04-09 Thread Russell Morrisey
...@gmail.com] Sent: Friday, April 09, 2010 2:12 PM To: users Subject: jqery not getting called after ajax refresh I added this jquery code to my page. $(document).ready(function(){ $(a.showHidePrograms).click( function () { var $div= $(this).parent().next(div

Re: jqery not getting called after ajax refresh

2010-04-09 Thread Ben Tilford
, LLC | russell.morri...@missionse.com | www.missionse.com 304 West Route 38, Moorestown, NJ 08057 -Original Message- From: tubin gen [mailto:fachh...@gmail.com] Sent: Friday, April 09, 2010 2:12 PM To: users Subject: jqery not getting called after ajax refresh I added

Re: jqery not getting called after ajax refresh

2010-04-09 Thread Jeremy Thomerson
| russell.morri...@missionse.com | www.missionse.com 304 West Route 38, Moorestown, NJ 08057 -Original Message- From: tubin gen [mailto:fachh...@gmail.com] Sent: Friday, April 09, 2010 2:12 PM To: users Subject: jqery not getting called after ajax refresh I added this jquery code