Category Archives: jQuery

Quick way to get the form ID of any form element

Here’s a quick snippet to get the form ID from any form element.
$(this).parents(“form”).attr(‘id’);

Leave a comment