I've found similar questions here but nothing works for me.
have inputs like:
<input type="text" value="2" name="pages_title[1]">
<input type="text" value="1" name="pages_title[2]">
trying to get these fields like:
$('input[name="pages_title[]"]')
but have empty results :(
how to get all fields?
I can only get it like $('input[name="pages_title[1]"]')