+ 3
I m getting no idea what this unscrewing the node is all about. Can someone help me to summarise?
2 Respuestas
+ 6
Creating a node is to create html tags into a variable. Then you can add to this node an arguments or put it into a html document with method appendChild or insertBefore
+ 1
Simplifying it, everything pretty much on a HTML webpage within <>'s is a node.
Anything thats an element is a node like <head> <body> etc and any element within those are also nodes.
The unscrewing term isnt really important it just means that you can target an individual node/element and manipulate it by telling it to do this or that or change parts of it with Javascript :)