Skip to content

Instantly share code, notes, and snippets.

@ekstinehickorysnippets
Created July 7, 2012 13:50
Show Gist options
  • Save ekstinehickorysnippets/3066540 to your computer and use it in GitHub Desktop.
Save ekstinehickorysnippets/3066540 to your computer and use it in GitHub Desktop.
JavaScript:Stylesheet Load IfLoadedNot
var cssUrl = 'css/style.css';
if($('link[rel*=style][href="'+cssUrl+'"]').length==0)
{
$("head").append('<link rel="stylesheet" type="text/css" href="'+cssUrl+'">');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment