This commit is contained in:
2016-02-21 16:36:02 -06:00
commit 86765b686f
12 changed files with 316 additions and 0 deletions

10
main.js Normal file
View File

@ -0,0 +1,10 @@
$( document ).ready(function() {
$('<div/>', {
'class': "jquery-note",
text: "...jQuery loaded..."
}).appendTo('body');
});