$(document).ready(function() {
$('#email').focus(function(){
$(this).addClass('onFocus')
if ($(this).val('') == $(this).attr('Value')) {
$(this).val('');
}
}).blur(function(){
$(this).removeClass('onFocus');
if ($(this).val() == '') {
$(this).attr('value');
}
ваш кот должен быть такой
|