Posts by Pier Bottero • 46 points
6 posts
-
0
votes2
answers1908
viewsA: Typeerror: Cannot set Property 'innerHTML' of null
Opa! There in your JS, in that stretch: try { var names = RandomNames.generate(10); for (var i=0; i<names.length; i++) { window.alert(names[i]); log.innerHTML += names[i]; //…
-
0
votes6
answers2057
viewsA: Modify the title of a browser tab with Javascript
To "pick up" the content of the input you can use: var entrada = document.getElementsByTagName('input')[0].value; And to assign the value collected in the input to the title of the page you can use:…
javascriptanswered Pier Bottero 46 -
1
votes2
answers93
viewsA: Add students' grades in Jquery or Javascript
Below my suggestion, starting with HTML: <table class="table"> <thead> <tr> <td colspan="2">Aluno</td> <tr> <td>Nota 1</td> <td><input…
-
0
votes2
answers50
viewsA: Questions about Scroll Avascript
Oops! If you want to render the screen value on the page, you can create a function activated by the scroll event... and insert the screen value into the HTML of an element of your page. For…
javascriptanswered Pier Bottero 46 -
2
votes2
answers103
viewsA: how to make the slide responsive
Hello! When you say "some things" you mean the slider navigation Bullets? If it is, the position of the Bullets is stuck by the bottom 25px; I suggest you position vertically using top instead of…
-
0
votes1
answer74
viewsQ: npm Review does not work locally or in hosting
I have a Node application that I run with the command: node server.js But when I close the terminal where the command was executed, the application closes. Researching found package npm Forever. I…