Last active
December 27, 2015 12:48
-
-
Save ratherironic/7328232 to your computer and use it in GitHub Desktop.
This is kinda amazing that this Works : JS in CSS
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
#emptyDiv:after { | |
content: 'alert("you gotta be kidding me")'; | |
} |
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 id="emptyDiv"></div> |
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
eval(eval(window.getComputedStyle( | |
document.querySelector('#emptyDiv'), ':after' | |
).getPropertyValue('content'))); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment