Skip to content

Instantly share code, notes, and snippets.

@jassey
Created January 10, 2014 06:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jassey/8347912 to your computer and use it in GitHub Desktop.
Save jassey/8347912 to your computer and use it in GitHub Desktop.
$("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