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