This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Stock Android Browser Check >>>>>>>>>>>>>>>> | |
var ua = navigator.userAgent.toLowerCase(); | |
var isAndroid = ua.indexOf("android") > -1 && ua.indexOf("mobile") && ua.indexOf("chrome")==-1 | |
if(isAndroid) { | |
// stuff | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function ($) { | |
/** | |
* @function | |
* @property {object} jQuery plugin which runs handler function once specified element is inserted into the DOM | |
* @param {function} handler A function to execute at the time when the element is inserted | |
* @param {bool} shouldRunHandlerOnce Optional: if true, handler is unbound after its first invocation | |
* @example $(selector).waitUntilExists(function); | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// >> jQuery - select all element multiples, beyond the ones you want to retain >>>>>>>>>>>>>>>> | |
$('.someElement').find('ul li+li').hide(); | |
// li+li+li | |
// li+li+li+li, etc | |
// same syntax as css |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Psuedo: | |
(some_condition) ? do_something_simple : do_something_else; | |
// Example within an API | |
$('.featured-carousel .carousel').carouFredSel({ | |
scroll: { | |
fx: ($('html').hasClass('ie8'))?'scroll':'crossfade' | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ##### General Tips & Syntax ##### */ | |
// scope | |
var area = 36; // a var with global scope | |
var volume = function (w, l, h) { | |
var depth = 15; // a var with local scope | |
area = w * l; // a var with global scope | |
}; | |
// line wrap |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$services.on('click','.sub-columns a',function(){ | |
// stuff | |
}); | |
$someVariable.on('someevent','.classtarget',function(){ | |
// stuff | |
}); | |
// used for targeting specific events & classes | |
// more optimal than a dom crawl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('#element').click(function() { | |
if ($(this).data('clicked')) { | |
$(this).css({'display': 'block'}); | |
$(this).data('clicked', false); | |
} else { | |
$(this).css({'display': 'none'}); | |
$(this).data('clicked', true); | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var url = document.referrer, | |
urlsplit = url.split("/").pop(); | |
$('body').addClass(urlsplit); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (var i=1; i<26; i = i++) { // counting from 1 to 25 | |
console.log(i); | |
} | |
for (var i = 5; i < 51; i+=5) { // counting from 5 to 50 in increments of 5 | |
console.log(i); | |
} | |
for (var i=8; i<120; i+=12) { // counting from 8 to 119 in increments of 12 | |
console.log(i); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var cities = ["Melbourne", "Amman", "Helsinki", "NYC", "Tulsa", "Nome"]; | |
for (var i = 0; i < cities.length; i++) { | |
console.log("I would like to visit " + cities[i]); | |
} |