Skip to content

Instantly share code, notes, and snippets.

@chince
Created August 13, 2014 09:48
Show Gist options
  • Select an option

  • Save chince/3936a487b81664f827b8 to your computer and use it in GitHub Desktop.

Select an option

Save chince/3936a487b81664f827b8 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<div id="a"></div>
<div id="b"></div>
<span id="c"></span>
<div id="d"></div>
<div id="e"></div>
<script>
document.getElementById('a').innerHTML = '<strong>Hi</strong>';
document.getElementById('b').outerHTML = '<div id="b" class="new">Whats Shaking</div>';
document.getElementById('c').textContent = 'dude';
document.getElementById('d').innerText = 'Keep it';
document.getElementById('e').outerText = 'real!';
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment