How Can We Help?
This can be accomplished by using the name attribute selector
$("input[name=ElementName]").val();
ElementName is the attribute name of the element
<input type="text" name="ElementName" />
This can be accomplished by using the name attribute selector
$("input[name=ElementName]").val();
ElementName is the attribute name of the element
<input type="text" name="ElementName" />