Skip to content

Instantly share code, notes, and snippets.

View blackDelta's full-sized avatar

Sohail ahmad blackDelta

View GitHub Profile
@blackDelta
blackDelta / document-ready-styles.js
Last active August 29, 2015 13:56
5 DIFFERENT TYPES OF DOCUMENT READY EXAMPLES
$(document).ready(function() {
//do jQuery stuff when DOM is ready
});
$(function(){
//jQuery code here
});
var ninja = {
yell: function (n) {
console.log(n);
return n > 0 ? ninja.yell(n - 1) + 'a' : 'Hiy';
}
}
var tyko = {
yell: ninja.yell