Hi,
See the jquery code below.
Code: JavaScript
tbl = $("#tabDelivery1");
var newTbl = tbl.clone();
tbl.remove();
newTbl.id = "tabDelivery1";
newTbl.appendTo("#divDocument");
It is a little part of javascript function to change the exhibition order of objects in the page, and "tabDelivery1" is a HTMLTable and "divDocument" is a Div.
When "tabDelivery1" and "divDocument" are into a ASP form, work fine. But, when I put the objects into a EO CallbackPanel, the jquery command $("#tabDelivery1") does not find anything.
How can I to refer objects in a jquery function that are in a CallbackPanel?
Thanks in advance, Camarate