I'm getting the following error for a simple function below:
TypeError: document.getElementsByTagName("p")[0].innerHtml is not a function
I'm just trying to understand the usage of getElementsByTagName.
function myFunc(){
document.getElementsByTagName("p")[0].innerHtml("hello my name is vaani");
}
</script>
</head>
<body onload="myFunc();">
<p></p>
<p></p>
<p></p>
</body>
Can someone tell me on where i'm going wrong?
innerHTML
but not innerHtml
, and it is not a function, you should set the string to this property.
document.getElementsByTagName("p")[0].innerHTML = "hello my name is vaani";
use
document.getElementsByTagName("p")[0].innerHTML="hello my name is vaani";
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With