Answers for "why we have to getelementbyid i"

4

how to use document.getelementbyid

<p id="YourId">How to use document.GetElementById in HTML</p>
<script>
document.GetElementById('YourId')./* The thing you need to do to your code... Here I want .innerHTML you can take any...  */.innerHTML('/* what will it change... */')
</script>
Posted by: Guest on September-29-2020
0

what does document.getelementbyid return

function changeColor(newColor) {
  var elem = document.getElementById('para');
  elem.style.color = newColor;
}
Posted by: Guest on December-29-2020

Code answers related to "why we have to getelementbyid i"

Code answers related to "Javascript"

Browse Popular Code Answers by Language