Skip to content

Instantly share code, notes, and snippets.

View jlarrigan's full-sized avatar

Jordan Larrigan jlarrigan

View GitHub Profile

Reading

  • How to Write A Sentence: And How To Read One
  • To Sell is Human
  • The Power of Habit: Why We Do What We Do in Life and Business

Favrotie Blogs

Up Next

Keybase proof

I hereby claim:

  • I am jlarrigan on github.
  • I am larrigan (https://keybase.io/larrigan) on keybase.
  • I have a public key whose fingerprint is 79FE B708 889E D8C5 D21E FE6B 4E3F D60F 1B99 E44B

To claim this, I am signing this object:

@jlarrigan
jlarrigan / Notes.txt
Last active December 28, 2015 22:09
Css Hacks
For embeds
<= 479 1 col
<= 767 2 col
@jlarrigan
jlarrigan / .htaccess
Created October 22, 2013 07:52
outage page
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_URI} !.*index\.html
RewriteRule (.*) /index.html
</IfModule>
Access elements
$('selector')
var messagePara = $('#message');
var linkList = $('a');
var subMenu = $('.submenu').hide();
var subTag = $('#navBar a');
var childSel = $('body > p');
var adjacentSib = $('h2 + div');
var attributeSel = $('img[alt]');