js getelementbyid
document.getElementById("some_id");
document.getElementById
function changeColor(newColor) {
var elem = document.getElementById('para');
elem.style.background-color = newColor;
}
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>
how to use document.getelementbyid
<p id="YourId">How to use document.GetElementById in HTML</p>
<script>
function demo(){
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>
<!-- Now execute it by writing the button tag!--><button onclick="demo()">Click Me!!!</button>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us