Posts by João Carlos • 11 points
1 post
-
1
votes2
answers584
viewsA: Find out if anything has changed in the form using jQuery
You can also use jQuery’s change function, it would look like this: $(':input').change(function(){ //Ação desejada. }); In this small example I marked to select all INPUT fields, but you can through…
jqueryanswered João Carlos 11