Created
October 9, 2016 11:57
-
-
Save aristotll/07899318e63c5c2ad431e6616389eabf to your computer and use it in GitHub Desktop.
A getting started example using jGrowl on cdnjs.
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> | |
<title>jGrowl</title> | |
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/jquery-jgrowl/1.2.12/jquery.jgrowl.min.css" /> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery-jgrowl/1.2.12/jquery.jgrowl.min.js"></script> | |
<script type="text/javascript"> | |
(function($){ | |
$(function(){ | |
$.jGrowl("Hello world!"); | |
}); | |
})(jQuery); | |
</script> | |
</head> | |
<body> | |
<h1>jGrowl</h1> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment