[jQuery] Re: How can executable jquery/jscript be returned in an Ajax response

2008-12-19 Thread Ricardo Tomasi
$('trtdcontents/td/tr').appendTo('table.ofmine').click(function (){ ... }) Or use the LiveQuery plugin, then you can register handlers only once for all similar elements (http://brandonaaron.net/jquery/plugins/ livequery) - ricardo On Dec 19, 3:36 am, fambi fambizz...@tm4b.com wrote: Let's

[jQuery] Re: How can executable jquery/jscript be returned in an Ajax response

2008-12-19 Thread fambi
Ricardo, What you are suggesting is what we're already doing. But I would like to feed that command through the response. Is that possible? F. On Dec 19, 8:58 pm, Ricardo Tomasi ricardob...@gmail.com wrote: $('trtdcontents/td/tr').appendTo('table.ofmine').click(function (){  ... }) Or