jquery find first parent element with class code example
Example 1: select parent of element jquery
$(this).parent(); // jquery
Example 2: jquery get closest form
$( this ).closest( "form" )
$(this).parent(); // jquery
$( this ).closest( "form" )