Hello, I am having a problem with selecting an element from a previously loaded html page
if I use this code, the one before last is designated too be the last in the dom-tree instead of the one that I just inserted
$("div.wrapper:last").after('<div class="wrapper"></div>');
$('.wrapper:last').load('tbnote.html .pane');
$(".pane:last").prepend("testmessage");
What can I do, too make it work, because I need too set the hidden field value too the primarykey value of a database table
if it is not possible, what would be an alternative to get the content in the div with the hiddenfieldvalues already set??
Thanks in advance, Richard