+
+ // Enlève ou affiche les informations (p.e. '<nom>') concernant les champs des formulaires.
+ $('form input.info').focus(function() {
+ if (!$(this).hasClass('info'))
+ return;
+
+ var value = $(this).val();
+ $(this).blur(function() {
+ if ($(this).val().trim() === '') {
+ $(this).val(value).addClass('info');
+ $(this).unbind('blur');
+ }
+ });
+
+ $(this).val('').removeClass('info');
+ });
+
+ $('form').submit(function() {
+ $('input.info', this).val('');
+ });