Skip to content

Instantly share code, notes, and snippets.

@ratherironic
ratherironic / idonteven.css
Last active December 27, 2015 12:48
This is kinda amazing that this Works : JS in CSS
#emptyDiv:after {
content: 'alert("you gotta be kidding me")';
}
@ratherironic
ratherironic / question
Created October 17, 2013 20:43
Question: which of these do you prefer?
/* 1: SPACING AFTER 'function' */
// A
function throwWaterBalloon(person){
person.isWet = true;
}
// B
function throwWaterBalloon (person){
person.isWet = true;
}