Posts by N. Reek. • 91 points
4 posts
-
2
votes1
answer30
viewsA: Eventlistener does not work with 2 or more inputs
You need to use querySelectorAll and use a each for each of the elements, as in the below: var inputs = document.querySelectorAll('input.sliderAluno'); [].forEach.call(inputs, function(input) {…
-
1
votes1
answer41
viewsA: What are "query strings" in files?
If you refer to the "Expires" key, probably this 1454618820 is only a timestamp stating what time the file will expire, and you cannot access without this key because the site does a check if this…
-
0
votes2
answers1599
viewsA: How to make all images the same size
CSS will solve your problem, but from what I saw on your site your image is 3000px wide, the best would be to decrease the size of it on the same server, saw. I use this code below to do this…
-
3
votes3
answers1843
viewsA: PHP - How to send data from a table to a form
Instead of creating a form inside the table and use buttons for actions, why not use links and pass values through the URL? Example: <a class="btn_padrao btn_margin"…