html - Jquery, get elements with element name starts with a giving string -
how using jquery input text elements whith name starts 'productelement'
you use attribute starts with selector [name^="value"]
:
selects elements have specified attribute value beginning given string.
$('input[name^="productelement"]')
Comments
Post a Comment