$(function() { //recherche focus enter $("#champ-search").focusin(function() { $("#enter").fadeIn(); }); $("#champ-search").focusout(function() { $("#enter").fadeOut(); }); // Fonction qui permet de vider champ "Rechercher" de façon automatique $(".autoEmpty").each(function(){ var defaultText = $(this).val(); $(this).focus(function(){ if($(this).val()==defaultText){ $(this).val(""); } }); $(this).blur(function(){ if($(this).val()==""){ $(this).val(defaultText); } }); }); }); //slider nivo $("#slider").nivoSlider({ controlNav: false });