Posts by Takemura • 1 point
1 post
-
0
votes5
answers2417
viewsA: How do I get the value of an Hidden input with jquery
Try this: function getHiddens() { var hiddens = $("table#tabMinhasTarefas input[type='hidden']"); for (var i = 0; i < hiddens.length; i++) { alert(hiddens[i].value); } } Hugs…