How do you know if a form has changed?
3 answers
There is an attribute: onchange="JAVASCRIPTFUNCTION();"
JavaScript example:
<form onchange="displayButton();"> </form>
...
Full explanation: CLICK (w3schools.com is one of the best resources)
//////////////////////////////////////////////// /////////////////////////////////////////
JQuery example:
$(FORM_ID).change(function(){
$(BUTTON_ID).show();
});
+3
source to share