Skip to content

Instantly share code, notes, and snippets.

View ellingen's full-sized avatar

Sven Ellingen ellingen

View GitHub Profile
(function ($) {
$.event.special.textchange = {
setup: function (data, namespaces) {
$(this).bind('keyup.textchange', $.event.special.textchange.handler);
$(this).bind('cut.textchange paste.textchange input.textchange', $.event.special.textchange.delayedHandler);
},
teardown: function (namespaces) {