uawdijnntqw1x1x1
IP : 216.73.217.6
Hostname : webm002.cluster111.gra.hosting.ovh.net
Kernel : Linux webm002.cluster111.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
atelierpru
/
provence
/
6bf95
/
..
/
tmp
/
..
/
prive
/
javascript
/
jquery.placeholder-label.js
/
/
/** * Placeholder label * https://github.com/AbleTech/jquery.placeholder-label * * Copyright (c) 2010 Able Technology Consulting Limited * http://www.abletech.co.nz/ */ (function($) { $.placeholderLabel = { placeholder_class: null, add_placeholder: function(){ if($(this).val() == $(this).attr('placeholder')){ $(this).val('').removeClass($.placeholderLabel.placeholder_class); } }, remove_placeholder: function(){ if($(this).val() == ''){ $(this).val($(this).attr('placeholder')).addClass($.placeholderLabel.placeholder_class); } }, disable_placeholder_fields: function(){ $(this).find("input[placeholder]").each(function(){ if($(this).val() == $(this).attr('placeholder')){ $(this).val(''); } }); return true; } }; $.fn.placeholderLabel = function(options) { // detect modern browsers var dummy = document.createElement('input'); if(dummy.placeholder != undefined){ return this; } var config = { placeholder_class : 'placeholder' }; if(options) $.extend(config, options); $.placeholderLabel.placeholder_class = config.placeholder_class; this.each(function() { var input = $(this); input.focus($.placeholderLabel.add_placeholder); input.blur($.placeholderLabel.remove_placeholder); input.triggerHandler('focus'); input.triggerHandler('blur'); $(this.form).submit($.placeholderLabel.disable_placeholder_fields); }); return this; } })(jQuery);
/home/atelierpru/provence/6bf95/../tmp/../prive/javascript/jquery.placeholder-label.js