JQuery erhalten Wert mit Namen
$("input[name=nameGoesHere]").val();
chuksokwuenu
$("input[name=nameGoesHere]").val();
$('#yourid').attr('name')
var name = $("#id").attr("name");
$('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'