Skip to content

Instantly share code, notes, and snippets.

@mstapp
Forked from thomasmb/add-stylesheet-once.js
Created March 10, 2014 02:33
Show Gist options
  • Save mstapp/9458549 to your computer and use it in GitHub Desktop.
Save mstapp/9458549 to your computer and use it in GitHub Desktop.
function add_stylesheet_once( url ){
$head = $('head');
if( $head.find('link[rel="stylesheet"][href="'+url+'"]').length < 1 )
$head.append('<link rel="stylesheet" href="'+ url +'" type="text/css" />');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment