Skip to content

Instantly share code, notes, and snippets.

@revelation
Created January 19, 2010 19:07
$(document).ready(function() {
$('.pretty_bird').livequery(function() {
turnPink(this);
});
$('.whos_pretty').load('/mo_pretty.html');
});
function turnPink(element) {
$(element).attr('style','background:pink;')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment