2013-03-18 07:21:34 +04:00
|
|
|
/*
|
|
|
|
* jquery.infieldlabel
|
|
|
|
* A simple jQuery plugin for adding labels that sit over a form field and fade away when the fields are populated.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2009 - 2013 Doug Neiner <doug@dougneiner.com> (http://code.dougneiner.com)
|
|
|
|
* Source: https://github.com/dcneiner/In-Field-Labels-jQuery-Plugin
|
|
|
|
* Dual licensed MIT or GPL
|
|
|
|
* MIT (http://www.opensource.org/licenses/mit-license)
|
|
|
|
* GPL (http://www.opensource.org/licenses/gpl-license)
|
2012-12-04 16:30:13 +04:00
|
|
|
*
|
2013-03-18 07:21:34 +04:00
|
|
|
* @version 0.1.3
|
2012-12-04 16:30:13 +04:00
|
|
|
*/
|
|
|
|
(function ($) {
|
|
|
|
|
|
|
|
$.InFieldLabels = function (label, field, options) {
|
|
|
|
// To avoid scope issues, use 'base' instead of 'this'
|
|
|
|
// to reference this class from internal events and functions.
|
|
|
|
var base = this;
|
|
|
|
|
|
|
|
// Access to jQuery and DOM versions of each element
|
|
|
|
base.$label = $(label);
|
|
|
|
base.label = label;
|
|
|
|
|
|
|
|
base.$field = $(field);
|
|
|
|
base.field = field;
|
|
|
|
|
|
|
|
base.$label.data("InFieldLabels", base);
|
|
|
|
base.showing = true;
|
|
|
|
|
|
|
|
base.init = function () {
|
2013-03-18 07:21:34 +04:00
|
|
|
var initialSet;
|
|
|
|
|
2012-12-04 16:30:13 +04:00
|
|
|
// Merge supplied options with default options
|
|
|
|
base.options = $.extend({}, $.InFieldLabels.defaultOptions, options);
|
|
|
|
|
2013-03-18 07:21:34 +04:00
|
|
|
// Check if the field is already filled in
|
2012-12-04 16:32:55 +04:00
|
|
|
// add a short delay to handle autocomplete
|
|
|
|
setTimeout(function() {
|
|
|
|
if (base.$field.val() !== "") {
|
|
|
|
base.$label.hide();
|
|
|
|
base.showing = false;
|
2013-03-18 07:21:34 +04:00
|
|
|
} else {
|
|
|
|
base.$label.show();
|
|
|
|
base.showing = true;
|
2012-12-04 16:32:55 +04:00
|
|
|
}
|
|
|
|
}, 200);
|
2012-12-04 16:30:13 +04:00
|
|
|
|
|
|
|
base.$field.focus(function () {
|
|
|
|
base.fadeOnFocus();
|
|
|
|
}).blur(function () {
|
|
|
|
base.checkForEmpty(true);
|
|
|
|
}).bind('keydown.infieldlabel', function (e) {
|
|
|
|
// Use of a namespace (.infieldlabel) allows us to
|
|
|
|
// unbind just this method later
|
|
|
|
base.hideOnChange(e);
|
2013-03-18 07:21:34 +04:00
|
|
|
}).bind('paste', function () {
|
2012-12-04 16:30:13 +04:00
|
|
|
// Since you can not paste an empty string we can assume
|
|
|
|
// that the fieldis not empty and the label can be cleared.
|
|
|
|
base.setOpacity(0.0);
|
2013-03-18 07:21:34 +04:00
|
|
|
}).change(function () {
|
2012-12-04 16:30:13 +04:00
|
|
|
base.checkForEmpty();
|
|
|
|
}).bind('onPropertyChange', function () {
|
|
|
|
base.checkForEmpty();
|
2012-12-04 16:32:55 +04:00
|
|
|
}).bind('keyup.infieldlabel', function () {
|
2013-03-18 07:21:34 +04:00
|
|
|
base.checkForEmpty();
|
2012-12-04 16:30:13 +04:00
|
|
|
});
|
2013-03-18 07:21:34 +04:00
|
|
|
|
|
|
|
if ( base.options.pollDuration > 0 ) {
|
|
|
|
initialSet = setInterval( function () {
|
|
|
|
if (base.$field.val() !== "") {
|
|
|
|
base.$label.hide();
|
|
|
|
base.showing = false;
|
|
|
|
clearInterval( initialSet );
|
|
|
|
}
|
|
|
|
}, base.options.pollDuration );
|
|
|
|
|
|
|
|
}
|
2012-12-04 16:30:13 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
// If the label is currently showing
|
|
|
|
// then fade it down to the amount
|
|
|
|
// specified in the settings
|
|
|
|
base.fadeOnFocus = function () {
|
|
|
|
if (base.showing) {
|
|
|
|
base.setOpacity(base.options.fadeOpacity);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
base.setOpacity = function (opacity) {
|
|
|
|
base.$label.stop().animate({ opacity: opacity }, base.options.fadeDuration);
|
|
|
|
base.showing = (opacity > 0.0);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Checks for empty as a fail safe
|
|
|
|
// set blur to true when passing from
|
|
|
|
// the blur event
|
|
|
|
base.checkForEmpty = function (blur) {
|
|
|
|
if (base.$field.val() === "") {
|
|
|
|
base.prepForShow();
|
|
|
|
base.setOpacity(blur ? 1.0 : base.options.fadeOpacity);
|
|
|
|
} else {
|
|
|
|
base.setOpacity(0.0);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-03-18 07:21:34 +04:00
|
|
|
base.prepForShow = function () {
|
2012-12-04 16:30:13 +04:00
|
|
|
if (!base.showing) {
|
|
|
|
// Prepare for a animate in...
|
|
|
|
base.$label.css({opacity: 0.0}).show();
|
|
|
|
|
|
|
|
// Reattach the keydown event
|
|
|
|
base.$field.bind('keydown.infieldlabel', function (e) {
|
|
|
|
base.hideOnChange(e);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
base.hideOnChange = function (e) {
|
|
|
|
if (
|
|
|
|
(e.keyCode === 16) || // Skip Shift
|
|
|
|
(e.keyCode === 9) // Skip Tab
|
|
|
|
) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (base.showing) {
|
|
|
|
base.$label.hide();
|
|
|
|
base.showing = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove keydown event to save on CPU processing
|
|
|
|
base.$field.unbind('keydown.infieldlabel');
|
|
|
|
};
|
|
|
|
|
|
|
|
// Run the initialization method
|
|
|
|
base.init();
|
|
|
|
};
|
|
|
|
|
|
|
|
$.InFieldLabels.defaultOptions = {
|
|
|
|
fadeOpacity: 0.5, // Once a field has focus, how transparent should the label be
|
2013-03-18 07:21:34 +04:00
|
|
|
fadeDuration: 300, // How long should it take to animate from 1.0 opacity to the fadeOpacity
|
|
|
|
pollDuration: 0, // If set to a number greater than zero, this will poll until content is detected in a field
|
|
|
|
enabledInputTypes: [ "text", "search", "tel", "url", "email", "password", "number", "textarea" ]
|
2012-12-04 16:30:13 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
$.fn.inFieldLabels = function (options) {
|
2013-03-18 07:21:34 +04:00
|
|
|
var allowed_types = options && options.enabledInputTypes || $.InFieldLabels.defaultOptions.enabledInputTypes;
|
|
|
|
|
2012-12-04 16:30:13 +04:00
|
|
|
return this.each(function () {
|
|
|
|
// Find input or textarea based on for= attribute
|
|
|
|
// The for attribute on the label must contain the ID
|
|
|
|
// of the input or textarea element
|
2013-03-18 07:21:34 +04:00
|
|
|
var for_attr = $(this).attr('for'), field, restrict_type;
|
2012-12-04 16:30:13 +04:00
|
|
|
if (!for_attr) {
|
|
|
|
return; // Nothing to attach, since the for field wasn't used
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find the referenced input or textarea element
|
2013-03-18 07:21:34 +04:00
|
|
|
field = document.getElementById( for_attr );
|
|
|
|
if ( !field ) {
|
|
|
|
return; // No element found
|
|
|
|
}
|
|
|
|
|
|
|
|
// Restrict input type
|
|
|
|
restrict_type = $.inArray( field.type, allowed_types );
|
|
|
|
|
|
|
|
if ( restrict_type === -1 && field.nodeName !== "TEXTAREA" ) {
|
2012-12-04 16:30:13 +04:00
|
|
|
return; // Again, nothing to attach
|
|
|
|
}
|
|
|
|
|
2013-03-18 07:21:34 +04:00
|
|
|
// Only create object for matched input types and textarea
|
|
|
|
(new $.InFieldLabels(this, field, options));
|
2012-12-04 16:30:13 +04:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2013-08-18 13:02:08 +04:00
|
|
|
}(jQuery));
|