Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save igoralves1/afc83f3a4cb9b7ad60b067904061b235 to your computer and use it in GitHub Desktop.
Save igoralves1/afc83f3a4cb9b7ad60b067904061b235 to your computer and use it in GitHub Desktop.
JS - Load some CSS file dinamically.
<script>
$(function(){
$('head').append('<link href="someFile.css" rel="stylesheet">');
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment