Hi I am trying to update a div with some html from another div.
var results = document.getElementsByClassName("myclass");
$("resultsDiv").update(results);
I then get this: [object HTMLCollection] How do I convert it to a string so it is shown as html in my div ?
Cheers