Posts by Vitor Piovezam • 103 points
4 posts
-
0
votes2
answers76
viewsA: How to redirect on first access another page instead of index?
If you are using Apache, open the httpd.conf file and change the Directoryindex line to: DirectoryIndex inicio.html index.html index.htm This way, the default file that Apache will search for will…
htaccessanswered Vitor Piovezam 103 -
0
votes3
answers32
viewsA: Is it possible to modify what the user will enter in a form?
Only you return to the variable you want, the value of the textbox the user typed by adding another string. A method called concatenation. Try this $idade = "5"; $valorAdd = "hue"; $idadeAtual =…
-
0
votes1
answer412
viewsQ: After using . innerHTML to fill a DIV, how to clear that div with another function?
I have the following code, var resultado; var numero; var tamanhoNumero; var i=0; function calcular(){ numero = document.form.numero.value; console.log(numero); tamanhoNumero = numero.length;…
-
0
votes2
answers969
viewsA: Dropdown Menu Items do not change color
Instead of putting a class in the li tag, put a style inside it to determine the color you want. If it does not work, you can enter the Bootstrap code and change the color directly in the class .…