Posts by Fabio Nogueira • 9 points
4 posts
-
0
votes2
answers500
viewsA: Javascript does not work on Nodejs
Just to explain why express.static worked. The browser makes a request to the server and the server returns the index.html according to the code: app.get("/", (req, res) => {…
-
0
votes2
answers126
viewsA: Validate read or unread message
That solves: <th width="20%" style="font-weight:bold" onclick="this.style['font-weight'] ='normal'">De</th>
-
0
votes1
answer307
viewsA: Ajax with Jquery does not work
As already mentioned, this e.preventDefault(); makes no sense so "and" is undefined and that is the cause of the error Uncaught ReferenceError: e is not defined…
-
0
votes2
answers2247
viewsA: Exchange of content between pages with Javascript
has how to do this using various technologies and in various ways. but using only html/css, here goes: pagina1.html <h1>origem</h1> <p id="p1">Primeiro</p> <a…