﻿
$(document).ready(function () {
    if (!Modernizr.input.placeholder) {
        $("input,textarea").each(function (i, item) {
            if ($(this).attr("placeholder") != null) {
                $(this).val($(this).attr("placeholder"));
                $(this).addClass("placeholder");
                $(this).focus(function () {
                    if ($(this).val() == $(this).attr("placeholder")) {
                        $(this).val("");
                    }
                }).blur(function () {
                    if ($(this).val() == "") {
                        $(this).val($(this).attr("placeholder"));
                    }
                }).blur();
            }
        });
    }
});
