helpcenter/helpcenter.r7-office.ru/Web/js/jquery/jquery.watermarkinput.js

30 lines
1.8 KiB
JavaScript

/*
* Copyright (c) 2007 Josh Bush (digitalbush.com)
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
/*
* Version: Beta 1
* Release: 2007-06-01
*/
!function(o){var l=new Array;o.Watermark={ShowAll:function(){for(var o=0;o<l.length;o++)""==l[o].obj.val()?(l[o].obj.val(l[o].text),l[o].obj.css("color",l[o].WatermarkColor)):l[o].obj.css("color",l[o].DefaultColor)},HideAll:function(){for(var o=0;o<l.length;o++)l[o].obj.val()==l[o].text&&l[o].obj.val("")}},o.fn.Watermark=function(r,a){return a||(a="#aaa"),this.each(function(){function t(){n.val()==r&&n.val(""),n.css("color",e)}function c(){0==n.val().length||n.val()==r?(n.val(r),n.css("color",a)):n.css("color",e)}var n=o(this),e=n.css("color");l[l.length]={text:r,obj:n,DefaultColor:e,WatermarkColor:a},n.focus(t),n.blur(c),n.change(c),c()})}}(jQuery);