Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
@Maerlyn, yes, although I asked this question almost a year before the other question you mention. – aidan May 21 at 3:53

6 Answers

up vote 57 down vote accepted

Per the jQuery documentation, try this:

$('input[inputName\\[\\]=someValue]')

[EDIT] However, I'm not sure that's the right syntax for your selector. You probably want:

$('input[name=inputName\\[\\]][value=someValue]')
share|improve this answer
7  
Good catch. The reason for needing two backslashes is because a single backslash is interpreted as a JavaScript string escape character, so you need two to specify a literal backslash, which provides the escape character to the selector... ah, the joys of multiple levels of character escaping. – Peter Mar 2 '10 at 17:04
Hey mystery downvoter - why the downvote on an answer that's 2 years old? – Dancrumb Jul 10 '12 at 21:49
This is crazy given Gumbo's answer below. Double escaping.. No thanks! – Bryan Potts Jun 5 at 0:22

You can use backslash to quote "funny" characters in your jQuery selectors:

$('#input\\[23\\]')

For attribute values, you can use quotes:

$('input[name="weirdName[23]"]')

Now, I'm a little confused by your example; what exactly does your HTML look like? Where does the string "inputName" show up, in particular?

edit fixed bogosity; thanks @Dancrumb

share|improve this answer
2  
jQuery documentation stipulates that two backslashes are needed for escaping. – Dancrumb Mar 2 '10 at 17:07
1  
oh durr you're right - it's not so much for jQuery itself but because Javascript will parse out the single ones! Thanks. – Pointy Mar 2 '10 at 17:25
voted up following edit – Dancrumb Mar 2 '10 at 17:36
1  
I am not able to select (coincidentally a select tag) <select name="foo[bar]"> using $('select[name=foo\\[bar\\]]') however I am able to do so using $('select[name="foo[bar]"]), you second suggestion. – Fronker Jan 30 at 14:00
Thank you for adding this answer! Using quotes is more practical than the escaping solution when constructing selectors dynamically. – octern Feb 15 at 17:17

The attribute selector syntax is [name=value] where name is the attribute name and value is the attribute value.

So if you want to select all input elements with the attribute name having the value inputName[]:

$('input[name="inputName[]"]')

And if you want to check for two attributes (here: name and value):

$('input[name="inputName[]"][value=someValue]')
share|improve this answer
2  
This is much nicer than all that backlash escaping, and I can confirm it works on Chrome 9 and IE6. JQuery version here is 1.4.4 – pablobm Feb 15 '11 at 13:27
Thank you for adding this answer! Using quotes is more practical than the escaping solution when constructing selectors dynamically. – octern Feb 15 at 17:18
Works for me in 1.8.3, nice. – Bryan Potts Jun 5 at 0:23

Try this:

$('input[name="inputName\\[\\]"]')

You need to escape the brackets [ ] using backslash.

share|improve this answer
jQuery escapes with two backslashes – Dancrumb Mar 2 '10 at 17:01

If the selector is contained within a variable, the code below may be helpful:

selector_name = $this.attr('name');
//selector_name = users[0][first:name]

escaped_selector_name = selector_name.replace(/(:|\.|\[|\])/g,'\\$1');
//escaped_selector_name = users\\[0\\]\\[first\\:name\\]

In this case we prefix all special characters with double backslash.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.