Skip to content

Instantly share code, notes, and snippets.

@fleeting
Created May 6, 2010 16:49
Show Gist options
  • Save fleeting/392361 to your computer and use it in GitHub Desktop.
Save fleeting/392361 to your computer and use it in GitHub Desktop.
$(".content img").each(function() {
if($(this).css('float') == "right")
$(this).addClass("right");
else if($(this).css('float') == "left")
$(this).addClass("left");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment