What is the best way to handle onchange event on a div? [closed]

if you want to detect for all form elements use:

$("div *").change(function(){
  // Whatever
});

Good luck

Leave a Comment