Skip to content

Instantly share code, notes, and snippets.

@IvikGH
Forked from WarFox/fiddle.html
Created July 8, 2016 18:43
Show Gist options
  • Save IvikGH/45f8c4b29aef464909e647f137168e97 to your computer and use it in GitHub Desktop.
Save IvikGH/45f8c4b29aef464909e647f137168e97 to your computer and use it in GitHub Desktop.
Change html content with vanilla javascript
<div id="myelement">Old Text</div>
function changeContent () {
var myelement = document.getElementById("myelement");
myelement.innerHTML= "New Text";
}
window.onload = changeContent ;
name: Change Content - Javascript
description: Change html element content using pure javascript
authors:
- Deepu Mohan Puthrote (WarFox)
normalize_css: no
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment