Skip to content

Instantly share code, notes, and snippets.

@folktrash
folktrash / spaces.js
Last active August 29, 2015 14:09 — forked from dandean/spaces.js
var foo = "foo",
bar = "bar";
@folktrash
folktrash / log.json
Created May 18, 2011 22:16
post sort stringy log (uh huhuhuhuh)
[{"date":"2011-05-18T22:03:16.000Z","content":"I'm at Westlake Station (4th Ave, at Pine St, Seattle) http://4sq.com/lbghFh","user":"spc0806","profileImage":"http://a0.twimg.com/profile_images/1147601579/springhill_normal","contentName":"none"},{"date":"2011-05-18T22:05:57.000Z","content":"@PDiddy7 for real?","user":"Meest","profileImage":"http://a3.twimg.com/profile_images/1116219372/9561398f-8c1f-4c4d-a606-a4fa631cb907_normal.png","contentName":"none"},{"date":"2011-05-18T22:06:50.000Z","content":"I'm at Pike Place Market (85 Pike St, at Pine St, Seattle) w/ 6 others http://4sq.com/mdW1KP","user":"jerrymac66","profileImage":"http://a2.twimg.com/profile_images/1202043380/006_normal.JPG","contentName":"none"},{"date":"2011-05-18T22:06:53.000Z","content":"Untitled http://j.mp/mLKqdK","user":"Hendel","profileImage":"http://a0.twimg.com/profile_images/1159901279/image_normal.jpg","contentName":"none"},{"date":"2011-05-18T22:07:53.000Z","content":"I'm at Espresso Vivace - Sidewalk Bar (321 Broadway Ave E, Seattle
@folktrash
folktrash / accessibleFlyoutNav
Created May 12, 2010 21:00
few lines of jquery which will make a css based "flyout" nav acessible via the keyboard and work in ie6.
$(document).ready(function() {
$('#navPrimary').children().focusin(function() { $(this).addClass('accessibleHover'); })
$('#navPrimary').children().focusout(function() { $(this).removeClass('accessibleHover'); })
});