Posts by Kelvin de Miranda Barros • 31 points
6 posts
-
0
votes2
answers105
viewsA: How could I see the variables of a local server running Node.js by "Inspect" the browser?
Well, the answer of Augusto Vasques did not solve my problem, which would be to see the variables and functions of the modules of the client-side of Node.js through Inspect Chrome (browser I use).…
-
-1
votes2
answers105
viewsQ: How could I see the variables of a local server running Node.js by "Inspect" the browser?
For a local HTML the global variables can be seen by the browser with Inspect, but I cannot see the variables running locally the same code with Node.js together with Express. I’d like to see the…
-
1
votes4
answers7972
viewsA: How can I make a copy of an array without reference?
There are several ways to copy without reference, and . Slice() is one of them. However, I was having the problem that the . Slice() for arrays within arrays will take only the reference instead of…
-
0
votes2
answers225
viewsA: Overflow-x of a <div> containing three other <div>
Perfect, I used the first alternative. To "stretch" the width of the Ivs "daughters" I put more characters inside them, and I believe I will leave space characters in the final result as a…
-
0
votes2
answers225
viewsQ: Overflow-x of a <div> containing three other <div>
Well, I did a major div, and it contains three other div. The content of these 3 internal divisions is 1234567890 three times in a row, and I would like their width to expand within the main div…
-
1
votes2
answers119
viewsQ: Button background does not change when it is first clicked. (Html5, pure CSS and JS)
Well, I have some buttons that represent bingo balls, and I want them to change color as soon as they are clicked, but they only change color from the second time they are clicked. I had to make a…