Skip to content

Instantly share code, notes, and snippets.

View lightyrs's full-sized avatar
🌒
ლ(▀̿̿Ĺ̯̿̿▀̿ლ)

Harris Novick lightyrs

🌒
ლ(▀̿̿Ĺ̯̿̿▀̿ლ)
View GitHub Profile
@lightyrs
lightyrs / detect_duplicate_ids.js
Created May 27, 2011 14:56
Detect Duplicated #ID Names and Warn
$('[id]').each(function(){
var ids = $('[id='+this.id+']');
if(ids.length>1 && ids[0]==this)
console.warn('Multiple IDs #'+this.id);
});
@lightyrs
lightyrs / animate_dom_build.js
Created May 27, 2011 14:56
Animate DOM-Building
(function n(e){e.eq(0).fadeIn(99,function(){n(e.slice(1))})})($(":visible").hide())
@lightyrs
lightyrs / log_available_vars.js
Created May 27, 2011 14:56
Log All Available Vars And Functions
for(var b in window) {
if(window.hasOwnProperty(b)) console.log(b);
}
@lightyrs
lightyrs / 8_font_stacks.css
Created May 27, 2011 14:56
The 8 Definitive Web Font Stacks
/*The Times New Roman-based serif stack:*/
font-family: Cambria, "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", serif;
/*A modern Georgia-based serif stack:*/
font-family: Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif," "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
/*A more traditional Garamond-based serif stack:*/
font-family: "Palatino Linotype", Palatino, Palladio, "URW Palladio L", "Book Antiqua", Baskerville, "Bookman Old Style", "Bitstream Charter", "Nimbus Roman No9 L", Garamond, "Apple Garamond", "ITC Garamond Narrow", "New Century Schoolbook", "Century Schoolbook", "Century Schoolbook L", Georgia, serif;
/*The Helvetica/Arial-based sans serif stack:*/
@lightyrs
lightyrs / cookies_pattern.js
Created May 27, 2011 14:56
Basic pattern for displaying content once per user
/* Basic pattern for displaying content once per user
using http://code.google.com/p/cookies/ plugin.
*/
$(function(){
var lightbox_cookie = $.cookies.get('lightbox_shown');
var $lightbox = $('iframe#warriors_lightbox, div#warriors_overlay');
if (lightbox_cookie == null) {
$lightbox.fadeIn(300, function(){
$.cookies.set( 'lightbox_shown', 'true' );