Created
June 22, 2011 20:55
-
-
Save hjdivad/1041165 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
div = document.createElement('div'); | |
div.innerHTML = '<span value="6512448364123" />'; | |
div.innerHTML // => "<span value="6512448364123"></span>"; | |
div = document.createElement('div'); | |
div.innerHTML = '<li value="6512448364123" />'; | |
div.innerHTML // => "<li value="2147483647"></li>" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment