What is the proper method to set the focus to a specific field within a dynamically loaded DIV?
$(\"#display\").load(\"?control=msgs\"); // loads the HTML in
Dynamically added items have to be added to the DOM... clone().append() adds it to the DOM... which allows it to be selected via jquery.
clone().append()