Clear all input fields inside divs

PHOTO EMBED

Tue Dec 13 2022 03:30:43 GMT+0000 (UTC)

Saved by @gbritgs #javascript

const form = $("#div :input");
form.each(function() {
  $(this).val('');
});
content_copyCOPY