I\'m using ASP.NET 2.0 with a Master Page, and I was wondering if anyone knew of a way to detect when the fields within a certain or fieldset<
or fieldset<
fieldset<
The following solution worked for me:
$("#myDiv :input").change(function() { $("#myDiv").data("changed",true);}); } if($("#myDiv").data("changed")) { console.log('Form data changed hence proceed to submit'); } else { console.log('No change detected!'); }
Thanks