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

Popular posts from this blog

css - I want to align grid in center -

Contact Form PHP Email Script -

python - SWIG function not printing output -