jQuery(function () {
jQuery('input,textarea,[type="text"]').on('focus',function () {
jQuery(this).data('placeholder', jQuery(this).attr('placeholder'))
.attr('placeholder', '');
}).blur(function () {
jQuery(this).attr('placeholder', jQuery(this).data('placeholder'));
});
jQuery('input[type="text"],textarea').on('focus',function () {
jQuery(this).data('name', jQuery(this).attr('name'))
.attr('name', '');
}).blur(function () {
jQuery(this).attr('name', jQuery(this).data('name'));
});
});
Reviews
There are no reviews yet.