Reputation: 179
For example
$('input[name="form[some_ids]"]')
What does the inner bracket represents?
Upvotes: 1
Views: 129
Reputation: 1
The inner bracket usually repesents an input array. Here's a link that explains it a bit:
Upvotes: 0
Reputation: 11320
Per @Pointy, it will match something like this.
<input name="form[some_ids]" />
The inner bracket is not part of the selector.
Upvotes: 2