//It is very probable not to be used anytime /* $("#query").livequery('keyup', function() { var filter_text = this.value.toLowerCase(); $("div.user").each(function() { if($(this).text().toLowerCase().search(filter_text)>=0){ $(this).slideDown("slow"); }else{ $(this).slideUp("slow"); } }); }); */ title = "<%=t('user.search')%>" $("#query").click(function(){ if(this.value == title){ this.value=""; } }); $("#query").blur(function(){ if(this.value == ""){ this.value= title; } });