Skip to content Skip to sidebar Skip to footer

On Jquery .html() Update, Other Functions Stop Working

I have certain 'pages' on my website that are sortable. They also auto update to a database. After my li list is sorted, a php page is called that re-orders the 'pages' and then I

Solution 1:

Probably a case of over-writing your elements that has handlers bound, in which case you need event delegation:

$('#reportContainer').on('input propertychange change', '#form1', function() {

Post a Comment for "On Jquery .html() Update, Other Functions Stop Working"