js-scaffold/main.js

11 lines
140 B
JavaScript
Raw Normal View History

2016-02-21 16:36:02 -06:00
$( document ).ready(function() {
$('<div/>', {
'class': "jquery-note",
text: "...jQuery loaded..."
}).appendTo('body');
});