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