Skip to content

Instantly share code, notes, and snippets.

@mkelly12
Created June 4, 2010 01:17
Show Gist options
  • Select an option

  • Save mkelly12/424774 to your computer and use it in GitHub Desktop.

Select an option

Save mkelly12/424774 to your computer and use it in GitHub Desktop.
/*!
* 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).data('lastValue', this.contentEditable === 'true' ? $(this).html() : $(this).val());
$(this).bind('keyup.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 !== $(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);
@mkelly12

mkelly12 commented May 9, 2011

Copy link
Copy Markdown
Author

Pass arguments to trigger in an array to fix stricter behavior in jQuery 1.6.

Broken up into two commits because I pasted in the code incorrectly the first time. Sorry.

https://gist.github.com/424774/361f3aea17e41e726bb3a9c3d4b179e49ca75a80
https://gist.github.com/424774/f279b03d73e22305059f590b745618fdb9158771

@softlion

Copy link
Copy Markdown

Hi, i added a textchanged method. See fork https://gist.github.com/1115896

@mkelly12

mkelly12 commented Aug 1, 2011

Copy link
Copy Markdown
Author

Nice, I'll be sure to point anyone to this fork that needs that functionality.

@thomthom

Copy link
Copy Markdown

Is the 25ms delay required? I've not tested extensively, but it seems that the text content get around to update even with a delay of 0.

@thomthom

Copy link
Copy Markdown

Under IE, when you use the Context Menu to delete the selected text, it doesn't trigger the event.
Under Firefox it does trigger however.

@softlion

Copy link
Copy Markdown

I've tryed my textchanged method, works ok with IE 7-9 with the scenario you described.

@thomthom

thomthom commented Oct 2, 2011

Copy link
Copy Markdown

hm... that is odd. Are we really doing the same thing? I uploaded a short video of what I see: http://dl.dropbox.com/u/4791584/textchange.mp4
Notice that when I choose Delete the count doesn't update.

@softlion

softlion commented Oct 3, 2011

Copy link
Copy Markdown

What version of jquery are you using ? Can you push your demo to jsfiddle ? It still works in my case with your scenario.

@thomthom

thomthom commented Oct 3, 2011

Copy link
Copy Markdown

That is example 2 at: http://www.zurb.com/playground/jquery-text-change-custom-event

But trying the plugin locally on my own system with jQuery 1.6.2 - same thing.

@softlion

softlion commented Oct 3, 2011

Copy link
Copy Markdown

Well example 2 (detecting text changes) works on IE7-9 on my system.
Wrote: aaa bbb ccc
Cut: bbb with context menu
Result: Text changed from aaa bbb ccc to aaa ccc

@thomthom

thomthom commented Oct 3, 2011

Copy link
Copy Markdown

Well Cut works for me as well. But it's Delete that does not trigger an event.

@softlion

softlion commented Oct 3, 2011

Copy link
Copy Markdown

ok you are right.
Seems to be a bug in IE9.
See the comment here: http://msdn.microsoft.com/en-us/library/gg592978(v=vs.85).aspx

@thomthom

thomthom commented Oct 3, 2011

Copy link
Copy Markdown

hmm... interesting. So it work on older version? And older versions use attachEvent... I wonder if it would work under IE9 if one used attachEvent. Might be something to mention to the jQuery team..?

@thomthom

thomthom commented Oct 3, 2011

Copy link
Copy Markdown

No :( attachEvent did not make a difference.

@garrettlancaster

Copy link
Copy Markdown

This is a great plugin, but it doesn't seem to work on dynamically added inputs. The bind works fine, but the textchange event is never triggered.

@mkelly12

Copy link
Copy Markdown
Author

Right, it only works with regular event binding. It does not work with .live(), .on(), or .delegate().

@whiteskull

Copy link
Copy Markdown

thx for this plugin, but how I can use it with - live

@mkelly12

mkelly12 commented Jul 2, 2012

Copy link
Copy Markdown
Author

whiteskull: It only currently works with bind. Would be awesome to see a rewrite that supports live as well.

@chaoflow

Copy link
Copy Markdown

Thank you very much for your plugin, it is already very useful!

I write a plugin that maintains form state: disable/enable save/reset buttons and modified/saved classes on the form. I listen to "textchanged" with one() (no selector) to mark the form as changed. In case the text returns to its original content / the content at the last savepoint, it would be great to get a unchanged event.

@chaoflow

Copy link
Copy Markdown

comment to my own comment: that in itself would only be useful if there is only one text field and the implementation is probably rather expensive.

@JProbe

JProbe commented Feb 21, 2013

Copy link
Copy Markdown

I tried your plugin in IE8 it sems you can bind hastext and textchange events through bind() but not with on() and on() is preferred approach over bind() as it is deprecated. Wondering if someone has seen similar issue

@jeanph01

Copy link
Copy Markdown

What can I say ? Thanks ! :-)

@arthur-s

Copy link
Copy Markdown

It seems that there're bug in Firefox and Chrome in Ubuntu 12.04
Textchange worked perfectly in all browsers for Ubuntu linux, but 2 days ago it stopped to work both in Firefox and Chrome at the same time. But in Opera it continued to work, very strange.
Then i upgraded my browsers, and the problem has gone.

@ranadeep47

Copy link
Copy Markdown

Doesn't work on latest version of chrome
29.0.1547.66 (Official Build 220848)

@imkevinxu

Copy link
Copy Markdown

Ditto, the demos on this page seem to be broken for Chrome Version 31.0.1650.48 http://zurb.com/playground/jquery-text-change-custom-event

@vasilakisfil

Copy link
Copy Markdown

It doesn't work on Chrome and Firerox.. any idea?

@Zeokat

Zeokat commented Mar 3, 2014

Copy link
Copy Markdown

I was testing into Chrome and not works. Anyways i will work on your code, you saved Zeokat tons of work.

@KiruNiku

Copy link
Copy Markdown

An event is not performed.

1.$("textarea").val("test1\ntest2");
2.selected delete textarea value;

@baldmountain

Copy link
Copy Markdown

Because it uses keyup to decide if it should trigger it won't work with multi keystroke characters like ü or many Chinese characters. It triggers on the first keystroke rather than on the full character after the second keystroke.

@espellcaste

Copy link
Copy Markdown

The examples are not working on this page http://zurb.com/playground/jquery-text-change-custom-event

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment