Skip to content

Instantly share code, notes, and snippets.

@cemerson
Created March 26, 2014 18:57
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cemerson/9790695 to your computer and use it in GitHub Desktop.
Save cemerson/9790695 to your computer and use it in GitHub Desktop.
jQuery: Load CSS File
$('<link>')
.appendTo($('head'))
.attr({type : 'text/css', rel : 'stylesheet'})
.attr('href', '/css/your_css_file.css');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment