Posts by Bruno Fava • 55 points
4 posts
-
0
votes4
answers112
viewsA: Check the amount of li’s inside a Javascript div
The answer is: var qtd = document.querySelectorAll('#collapse305 li').length; console.log('A quantidade de <li>\'s é', qtd); <div id="collapse305" role="tabpanel"…
javascriptanswered Bruno Fava 55 -
1
votes4
answers112
viewsQ: Check the amount of li’s inside a Javascript div
Good afternoon Folks would like to pick up the amounts of li inside that div, how can I? <div id="collapse305" role="tabpanel" aria-labelledby="heading375" aria-expanded="false" style="height:…
javascriptasked Bruno Fava 55 -
0
votes1
answer35
viewsQ: Do not insert duplicate value in gridview
I have a Javascript function that I can insert and delete an item in Gridview, but I have faced a problem by not letting an equal value be inserted, as I cannot enter an equal value dsEspecialidade…
-
3
votes1
answer50
viewsQ: Error adding Controler to ASP.NET MVC
A doubt when creating a controller. Because when trying to create it has shown the error of the attached image. I created 3 small classes: Dependentes, Tipobenef, TitularPlano and ProvaContext…