/** # mod_jv_yahoo_weather - JV Yahoo Weather # @version 3.0.1 # ------------------------------------------------------------------------ # author Open Source Code Solutions Co # copyright Copyright (C) 2011 joomlavi.com. All Rights Reserved. # @license - http://www.gnu.org/licenses/gpl-3.0.html GNU/GPL or later. # Websites: http://www.joomlavi.com # Technical Support: http://www.joomlavi.com/my-tickets.html -------------------------------------------------------------------------*/ function clear(){ $$('.text').each(function(el){ var text = el.value; el.onfocus = function(){ if(el.value == text){ el.value=''; } }; el.onblur = function(){ if(el.value==''){ el.value = text; } }; }); }