Posts by user139757 • 116 points
4 posts
-
0
votes1
answer65
viewsA: Problem mounting server Angularjs
It’s not an Angular error, it’s a Nodejs error. You need to set what runs with the command npm start. Normally, we run the script with the command node [caminho do script], but to make our lives…
angularjsanswered user139757 116 -
4
votes2
answers1136
viewsA: Perform search inside javascript object and return value
Ok, but first let’s create a valid object, because the stated question is not. var produtos = { skus:[{ especificacao: { cor: "Azul", tamanho: "Queen" }, sku: 132 }, { especificacao: { cor:…
-
4
votes3
answers220
viewsA: Why "Domcontentloaded" only works after Ctrl+F5
Domcontentloaded is an event triggered as soon as the HTML is loaded. It is possible that the event will fire even before your Javascript is loaded. If this happens, when your Event Listener is…
-
2
votes1
answer83
viewsA: jQuery1.7.2 compatibility issue for jQuery 3.3.1
But what would be the problem in using jQuery 1.7.2? Finally, by running the code in the Debugger it is possible to verify that jQuery 3.3.1 gives you a reference to the element in which the Event…