Created
January 10, 2014 06:49
-
-
Save jassey/8347912 to your computer and use it in GitHub Desktop.
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
$("a").each(function() { | |
var href = $(this).attr("href") | |
if (href.indexOf("class.hujiang.com") != -1) { | |
console.log(href); | |
$(this).css("border-width", "2px"); | |
$(this).css("border-color", "red"); | |
$(this).css("border-style", "solid"); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment