Skip to content

Instantly share code, notes, and snippets.

@fedek6
Created May 21, 2018 12:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fedek6/83733e6252aeb72df421e023b6d987a1 to your computer and use it in GitHub Desktop.
Save fedek6/83733e6252aeb72df421e023b6d987a1 to your computer and use it in GitHub Desktop.
jQuery basic bootstrap
(function ($, root, undefined) {
/**
* Onready – fire when DOM is ready
*/
$(function () {
'use strict';
// say hello
console.log('Hello, Want to hire me? Go to: http://realhe.ro');
// Begin code here...
});
/**
* Onload – fire when everything si loaded
*/
$(window).on("load", function (e) {
console.log("INFO: Everything is loaded now.");
// Begin code here...
} );
})(jQuery, this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment