Skip to content

Instantly share code, notes, and snippets.

@treasonx
Created October 1, 2012 17:07
Show Gist options
  • Save treasonx/3813041 to your computer and use it in GitHub Desktop.
Save treasonx/3813041 to your computer and use it in GitHub Desktop.
Insert CSS
loadCss: function( cssString, $head) {
var $css = $('<style type="text/css">'+cssString+'<style>');
$head = $head || $('head');
$head.append($css);
return $css;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment