Good morning sir. My float is not display grid rows in reconditioning className. Thanks you sir. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Good morning sir. My float is not display grid rows in reconditioning className. Thanks you sir.

Display grid rows in reconditioning className https://code.sololearn.com/W7rAyXC9d1D2/?ref=app

24th May 2022, 4:20 AM
Malick Diagne
Malick Diagne - avatar
1 Answer
0
// Created by Bob_Li Malick diagne codimed sa function changeColor (){ var tablerow = document.querySelector (".production table tr:nth-child(4) #quantite"); tablerow.innerHTML = 30; tablerow.style.backgroundColor = "red"; } //pour calculer le total quantite je dois selectionner toutes les quantités tr:nth-child (i) window.onload = function (){ var sum = 0; var el = parseInt(document.querySelector (".production table tr:nth-child(4) #quantite").innerHTML); var el2 = parseInt(document.querySelector (".production table tr:nth-child(5) #quantite2").innerHTML); sum = sum + el + el2 ; console.log (sum); }
4th Jul 2022, 9:06 AM
Ayan Poddar
Ayan Poddar - avatar