Posts by Gustavo Marmentini • 1 point
2 posts
-
0
votes2
answers91
viewsA: Copy <video> with its respective attributes
What you can also do is take each attribute of your existing tag and apply it to the new one. This small implementation can help: var video = document.getElementById("hero-unit").children, // Tag de…
-
0
votes4
answers943
viewsA: Adjust one td css only
You can use CSS selectors to do this. Two examples of how to do this is: td:nth-child(1){ width: 50px; } or else: td:first-child{ width: 50px; }…