Created
February 13, 2013 20:57
-
-
Save eduardolundgren/4948195 to your computer and use it in GitHub Desktop.
This file contains 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 lang="en"> | |
<head> | |
<meta charset="ISO-8859-1"> | |
<title>Document</title> | |
</head> | |
<div id="special"></div> | |
<div id="escaped"></div> | |
<body> | |
<script> | |
var special = "¿"; | |
var escaped = "¿"; | |
document.getElementById('special').innerHTML = special; | |
document.getElementById('escaped').innerHTML = escaped; | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment