Created
August 13, 2014 09:48
-
-
Save chince/3936a487b81664f827b8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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