function bookmark() { if (navigator.appName == 'Microsoft Internet Explorer') { window.external.AddFavorite(document.location.href, document.title); } else { window.sidebar.addPanel(document.title, document.location.href, ''); } } $(document).ready(function() { $('#login input[type=text], #login input[type=password]').focus(function() { if ($(this).attr('value') == 'Adresse email…') { $(this).attr('value', ''); } if ($(this).attr('value') == '********') { $(this).attr('value', ''); } }); });