Samx Here
n1udSecurity


Server : Apache
System : Linux webd348.cluster026.gra.hosting.ovh.net 5.15.148-ovh-vps-grsec-zfs-classid #1 SMP Thu Feb 8 09:41:04 UTC 2024 x86_64
User : hednacluml ( 122243)
PHP Version : 8.3.9
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
Directory :  /home/hednacluml/jobs/prive/javascript/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/hednacluml/jobs/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);

SAMX