jQuery Version: 1.4.1
I am attempting to write a simple watermark type plugin and I want to take advantage of live events since not all of the elements I need to use it on will exist during the page load, or they may be added and removed from the DOM. However, for some reason the events never fire.
Here is the not working code:
; (function($) {
$.fn.watermark = function(text) {
return $(this).each(function() {
$(this).live('focusout', function() {
if (this.value == "") {
this.value = text;
}
return false;
});
$(this).live('focusin', function() {
if (this.value == text) {
this.value = "";
}
return false;
});
});
}
})(jQuery);
I can get this to work without using live events. This code does work:
; (function($) {
$.fn.watermark = function(text) {
return $(this).each(function() {
$(this).focusout(function() {
if (this.value == "") {
this.value = text;
}
return false;
});
$(this).focusin(function() {
if (this.value == text) {
this.value = "";
}
return false;
});
});
}
})(jQuery);
.live()needs a selector not a DOM element, in the place you’re calling it, it’s only on a DOM element, so instead of this:Try this (
thisis already a jQuery object):It needs this because of how
.live()works, when an event bubbles up todocumentit checks that selector…if there’s no selector, there’s no way for it to check. Also, if you have a DOM element and the event handler is for only it,.live()wouldn’t make much sense anyway 🙂