Posts by Vittor Hugo Meneghini • 1 point
2 posts
-
0
votes4
answers746
viewsA: Limit number of lines Textareafor
Good afternoon, you can use javascript to make this validation: Ex: function retornaLimite(){ var coluna = document.getElementById("areaTexto").getAttribute("cols"); var linha =…
-
0
votes1
answer126
viewsA: How to add increment to each ID and reset after a new <div> PHP
To recover the amount of rows from your table you can use var numeroLinhas = document.getElementById('seuId').rows.length; If you want to go through each element of your list jquery makes it easy:…