-
-
Save butsjoh/560499 to your computer and use it in GitHub Desktop.
Added click event to support html5 input type="search"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* jQuery TextChange Plugin | |
* http://www.zurb.com/playground/jquery-text-change-custom-event | |
* | |
* Copyright 2010, ZURB | |
* Released under the MIT License | |
*/ | |
(function ($) { | |
$.event.special.textchange = { | |
setup: function (data, namespaces) { | |
$(this).bind('keyup.textchange', $.event.special.textchange.handler); | |
// Added also the click event because in html5 the input type search also has a small button to clear the search and it responds to click (maybe there is a better way but it works) | |
if ($(this).attr('type') == 'search') { | |
$(this).bind('click.textchange', $.event.special.textchange.handler); | |
} | |
$(this).bind('cut.textchange paste.textchange input.textchange', $.event.special.textchange.delayedHandler); | |
}, | |
teardown: function (namespaces) { | |
$(this).unbind('.textchange'); | |
}, | |
handler: function (event) { | |
$.event.special.textchange.triggerIfChanged($(this)); | |
}, | |
delayedHandler: function (event) { | |
var element = $(this); | |
setTimeout(function () { | |
$.event.special.textchange.triggerIfChanged(element); | |
}, 25); | |
}, | |
triggerIfChanged: function (element) { | |
var current = element[0].contentEditable === 'true' ? element.html() : element.val(); | |
if (current !== element.data('lastValue')) { | |
element.trigger('textchange', element.data('lastValue')); | |
element.data('lastValue', current); | |
} | |
} | |
}; | |
$.event.special.hastext = { | |
setup: function (data, namespaces) { | |
$(this).bind('textchange', $.event.special.hastext.handler); | |
}, | |
teardown: function (namespaces) { | |
$(this).unbind('textchange', $.event.special.hastext.handler); | |
}, | |
handler: function (event, lastValue) { | |
if ((lastValue === '' || lastValue === undefined) && lastValue !== $(this).val()) { | |
$(this).trigger('hastext'); | |
} | |
} | |
}; | |
$.event.special.notext = { | |
setup: function (data, namespaces) { | |
$(this).bind('textchange', $.event.special.notext.handler); | |
}, | |
teardown: function (namespaces) { | |
$(this).unbind('textchange', $.event.special.notext.handler); | |
}, | |
handler: function (event, lastValue) { | |
if ($(this).val() === '' && $(this).val() !== lastValue) { | |
$(this).trigger('notext'); | |
} | |
} | |
}; | |
})(jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment