I want to do this:
$('input[inputName=someValue]')
Except that the name of the input is not 'inputName', it is 'inputName[]'. And this doesn't work:
$('input[inputName[]=someValue]')
and neither does this:
$('input[inputName[]=someValue]')
or this
$('input["inputName[]"=someValue]')
Thanks for any help.
EDIT:
As some of you have pointed out, $('input[inputName=someValue]') would never work. What i was trying to do was $('input[name=inputName][value=someValue]'). (But with [] in the name attribute).
Thanks for all your help.