﻿$(document).ready(function () {
    if (Modernizr.input.placeholder)
        return;
    var selector = "input[placeholder],textarea[placeholder]";
    $(selector).focus(function () {
        if ($(this).hasClass('placeholder')) {
            if ($(this).val() == $(this).attr('placeholder'))
                $(this).val("");
            $(this).removeClass('placeholder');
        }
    }).keypress(function () {
        if ($(this).hasClass('placeholder')) {
            if ($(this).val() == $(this).attr('placeholder'))
                $(this).val("");
            $(this).removeClass('placeholder');
        }
    }).blur(function () {
        if ($(this).val() != "")
            return;
        $(this).addClass('placeholder');
        $(this).val($(this).attr('placeholder'));
    }).each(function () {
        if ($(this).val() != "" && $(this).val() != $(this).attr('placeholder'))
            return;
        $(this).val($(this).attr('placeholder')).addClass('placeholder');
    });

    $('form').submit(function () {
        $(this).find(".placeholder").each(function () {
            $(this).removeClass('placeholder');
            $(this).val("");
        });
    });
});
