I have elements like this...
<input type="text" name="name-lang[en]" id="name-lang[en]"> Name in English
<input type="text" name="name-lang[fr]" id="name-lang[fr]"> Name in France
And my jQuery is...
$('#name-lang[en]').hide();
which is not work.
And this is not work too.
$('#name-lang\[en\]').hide();
These are elements for html 5.