51 lines
1.0 KiB
JavaScript
51 lines
1.0 KiB
JavaScript
(function($) {
|
|
|
|
$.fn.replaceholder = function(options) {
|
|
|
|
var $placeholder;
|
|
|
|
(this.length > 0) ? $this = $(this) : $this = $('input[placeholder]');
|
|
return $this.each(function() {
|
|
|
|
settings = jQuery.extend({
|
|
focusColor: '#000',
|
|
blurColor: '#aaa'
|
|
}, options);
|
|
|
|
var $placeholder = $(this);
|
|
|
|
if ($placeholder.length > 0) {
|
|
|
|
var attrPh = $placeholder.attr('placeholder');
|
|
|
|
$placeholder.attr('value', attrPh);
|
|
$placeholder.css('color',settings.blurColor)
|
|
.bind('focus', function() {
|
|
|
|
var $this = $(this);
|
|
|
|
if($this.val() === attrPh)
|
|
$this.val('').css('color',settings.focusColor);
|
|
|
|
}).bind('blur', function() {
|
|
|
|
var $this = $(this);
|
|
|
|
if($this.val() === '')
|
|
$this.val(attrPh).css('color',settings.blurColor);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
})(jQuery);
|
|
|
|
jQuery(function($){
|
|
$(document).ready(function(){
|
|
if (!Modernizr.input.placeholder) { $("input[placeholder], textarea[placeholder]").replaceholder() }
|
|
})
|
|
}) |