Created
August 8, 2014 15:09
-
-
Save piyushchauhan2011/463632a118a198c0f9fa to your computer and use it in GitHub Desktop.
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
</body> | |
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/headjs/1.0.3/head.min.js"></script> | |
<script> | |
head.js("//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"); | |
head.js("//cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.20/angular.min.js"); | |
head.js("//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"); | |
</script> | |
<script> | |
head.js("//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js", function() { | |
console.log("Hello World from head.js"); | |
}); | |
</script> | |
<script> | |
head.js("//maps.googleapis.com/maps/api/js", "//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js", function() { | |
console.log("Google Maps finished loading here and jquery isn't loaded twice or thrice."); | |
}); | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment