I am using JQuery .Html() to swap around the divs on my page using this code:
$('#item1').html($('#item8').html());
$('#item8').html('<p>sdsdsd</p>');
I've found that this works great, however the JQuery methods stop working. So div #item1 will have a toggle for example, it will work fine until I use .html().
Is there any solution to rebind the JQuery to fix this?
Thanks!