I have to get value from textbox its name as an array.but i get response as undefined.
<input id="text[0][0]" type="text" value="" class="form-control label text-center" placeholder=" 1" style="">
<button>Text Box Value</button>
I tried jquery code
var button = $("button")
button.on("click", function(){
var cell= $("#text[0][0]").val()
alert(cell)
}))