Skip to content

Instantly share code, notes, and snippets.

@vanx2
Created December 17, 2012 08:05
Show Gist options
  • Save vanx2/4316559 to your computer and use it in GitHub Desktop.
Save vanx2/4316559 to your computer and use it in GitHub Desktop.
escape test
<html>
<body>
<form name=a>
<input type=text name=x value="te\st">
<input type=button onClick="alert(document.a.x.value);">
<hr>
<div id="y">te\st</div>
<input type=button onClick="alert(document.getElementById('y').innerHTML);">
<hr>
<input type=button onClick="alert('te\st');">
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment