9 lines
127 B
JavaScript
9 lines
127 B
JavaScript
// Initialization
|
|
function init() {
|
|
console.log("Init...");
|
|
}
|
|
|
|
// Run script after page is loaded
|
|
$(function() {
|
|
init();
|
|
});
|