Posts by mattdaspy • 133 points
4 posts
-
1
votes1
answer70
views -
0
votes3
answers51
viewsA: Modal’s button doesn’t work!
Try the following : document.getElementById("aceito").addEventListener("click", function() { document.getElementById("modal-promocao").style.display = "none"; });
-
1
votes1
answer474
viewsA: Calculate interest rate with Javascript
I saw that you are trying to use the function to store the values in arrays later, however, the calculation of interest based on the data that were entered in the form field, the simple logic would…
javascriptanswered mattdaspy 133 -
1
votes2
answers164
viewsA: Decrease DIV when another DIV expands
Just add a overflow: hidden; in the div listalog, because then it will hide everything that tries to push the limit height of the parent element (in this case the div listalog). Follow a Snippet to…