Skip to content

Instantly share code, notes, and snippets.

@isospin
isospin / README.md
Created March 5, 2019 12:18 — forked from joyrexus/README.md
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})
@isospin
isospin / cursor.css
Created January 22, 2019 10:51 — forked from dsdsdsdsdsds/cursor.css
CSS: Cross Browser hires/retina cursor image
.cursor {
cursor: url("cursor.png") 0 0, pointer; /* Legacy */
cursor: url("cursor.svg") 0 0, pointer; /* FF */
cursor: -webkit-image-set(url("cursor.png") 1x, url("[email protected]") 2x) 0 0, pointer; /* Webkit */
}