I need to load a piece of HTML from a list of HTML inserts
$('#placeholder1').html($('.html3').html());
<td id="placeholder1">
// place html here
</td>
<div style="display:hidden">
<div class="html1">
// some HTML 1 here
</div>
<div class="html2">
// some HTML 2 here
</div>
<div class="html3">
// some HTML 3 here
</div>
</div>
Does not seem to work. What am I missing? Thanks.
$(document).ready(function () { ...code here... });? If not, your elements do not exist yet. – Dominic Barnes Feb 24 '11 at 16:45readyblock. – Rocket Hazmat Feb 24 '11 at 16:48