After a form submit (http post), I create a new form on the same php page. The newly generated elements (buttons, label, sliders) are not recognised in the jquery event. The jquery works before submitting, but not after.
$("#sliders").on("change", function(){
var SliderValue = $("#slider0").val();
if (SliderValue==10){
$('#submit_next').button('enable');
}
else
$('#submit_next').button('disable');
$("#lblsum_scores").text(SliderValue+'/10');
});