Created
May 10, 2016 18:34
-
-
Save igoralves1/afc83f3a4cb9b7ad60b067904061b235 to your computer and use it in GitHub Desktop.
JS - Load some CSS file dinamically.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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