Skip to content

Instantly share code, notes, and snippets.

@micheljansen
Last active August 29, 2015 13:56
Show Gist options
  • Select an option

  • Save micheljansen/8973383 to your computer and use it in GitHub Desktop.

Select an option

Save micheljansen/8973383 to your computer and use it in GitHub Desktop.
if(document.createStyleSheet) {
document.createStyleSheet('http://micheljansen.org/~dawuss/nestdoge/nestdoge.css');
}
else {
var link=document.createElement('link');
link.rel='stylesheet';
link.type = 'text/css';
link.href='http://micheljansen.org/~dawuss/nestdoge/nestdoge.css';
document.getElementsByTagName("head")[0].appendChild(link);
}
try {
jQuery(".nstc-leftcol-content-listing-leftcol-container-image").attr("src", "http://micheljansen.org/~dawuss/nestdoge/doge.jpg");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment