Skip to content

Instantly share code, notes, and snippets.

View blainsmith's full-sized avatar
☠️

Blain Smith blainsmith

☠️
View GitHub Profile
@blainsmith
blainsmith / proposed.html
Created April 17, 2012 14:23
Semantic Definition List
<dl>
<li>
<dt>My Term</dt>
<dd>This is the description of my term</dd>
</li>
<li>
<dt>First Term</dt>
</li>
@blainsmith
blainsmith / gist:1188666
Created September 2, 2011 14:04
Search Tumblr by Tag
$('input').keypress(function(event){
if(event.which == 13) {
var tag = $(this).val();
tag = tag.replace(' ', '_');
location.href = 'http://YOUR_TUMBLR_SITE/tagged/' + tag;
}
});