Movies as code
Home
Genres
Top Posts
All Movies
Top Geeks
Submit
Created by
Ben Howdle of
Men in Black
Friday, March 9th, 2012 at 5:17 pm |
Action
| by Jeff Hansen
Agent J
Agent K
Spongebob
$(document).ready(function(){
var menInBlack = [];
$(".man").each(function(){
if($(this).css("color") == "rgb(0, 0, 0)"){
menInBlack.push($(this));
}
});
$(menInBlack).each(function(){
alert(this.text());
});
});
Vote up this code
0
Niteshk34
Man, you missed the script tag around the jquery code