This question is locked. New answers and comments are not allowed.
I am using the following code to capture change text in HTML inputs:
this works fine for normal textboxes and checkboxes.
I'm using Telerik's MVC ComboBoxFor which renders input tags, but does not seem to trigger the above JQuery.
I've also asked this question on Stackoverflow in case I don't get an answer here.
UPDATE: answered on the SO link, pretty obvious really, using client side events.
$(document).ready(function() { $(':input', document.myForm).bind("change", function() { setConfirmUnload(true); }); });this works fine for normal textboxes and checkboxes.
I'm using Telerik's MVC ComboBoxFor which renders input tags, but does not seem to trigger the above JQuery.
I've also asked this question on Stackoverflow in case I don't get an answer here.
UPDATE: answered on the SO link, pretty obvious really, using client side events.