Nilai nama input jQuery
var target = $('input[name="hoge"]').val();
Glamorous Gazelle
var target = $('input[name="hoge"]').val();
$("input[name=nameGoesHere]").val();
$('td[name ="tcol1"]') // matches exactly 'tcol1'
$('td[name^="tcol"]' ) // matches those that begin with 'tcol'
$('td[name$="tcol"]' ) // matches those that end with 'tcol'
$('td[name*="tcol"]' ) // matches those that contain 'tcol'
$('#yourid').attr('name')
var name = $("#id").attr("name");
var n = $("input[name^= 'card']").length;