How could I get the value of an element via the attribute name instead of the ID. eg if I use by id it would be $('#id').val();
name
ID
$('#id').val();
Use the name attribute selector:
$("input[name=nameGoesHere]").val();
1.4m articles
1.4m replys
5 comments
57.0k users