Skip to content

Instantly share code, notes, and snippets.

@eduardolundgren
Created February 13, 2013 20:57
Show Gist options
  • Save eduardolundgren/4948195 to your computer and use it in GitHub Desktop.
Save eduardolundgren/4948195 to your computer and use it in GitHub Desktop.
<!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 = "&iquest;";
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