how to find attribute name in jquery code example
Example 1: jquery select by name attribute
$('[name="ElementNameHere"]').doStuff();
Example 2: get attribute value jquery
var some_var = $( some_jquery_selector ).attr( 'some_attribute_name' );
Example 3: jquery get name attribute
$( "input[name='Hot Fuzz']" );