Posts by lockedz • 11 points
2 posts
-
1
votes1
answer81
viewsA: Directing to two pages
Your code worked here, I tested it on both Firefox and Chrome. For awareness raising (and debug facility), I put the separate redirect function: function redirBoleto() { window.setTimeout(function()…
-
0
votes4
answers1973
viewsA: How to make a list item show/hide a DIV when clicked?
You can simply create a function like function esconderDiv(qual) { document.getElementById(qual).style.visibility = "hidden"; } And call her with an onclick, directly <div id="fonte"> <ul…