Skip to content

Instantly share code, notes, and snippets.

View asuth's full-sized avatar

Andrew Sutherland asuth

View GitHub Profile
@asuth
asuth / jquery.classlist.js
Last active December 17, 2015 14:39 — forked from raybellis/jquery.classlist.js
Adding toggleClass
/*global jQuery */
;(function($) {
/*global document */
"use strict";
if (typeof document !== 'undefined' && ('classList' in document.createElement('a'))) {
var $ = jQuery;