
$(document).ready(function () {
    $("#textBox1").focus(function () {
        $(this).filter(function () {
            return $(this).val() == "" || $(this).val() == "Email"
        }).removeClass("watermarkOn").val("");
    });
    $("#textBox1").blur(function () {
        $(this).filter(function () {
            return $(this).val() == ""
        }).addClass("watermarkOn").val("Email");
    });
    $("#textBox2").focus(function () {
        $(this).filter(function () {
            return $(this).val() == "" || $(this).val() == "Name"
        }).removeClass("watermarkOn").val("");
    });
    $("#textBox2").blur(function () {
        $(this).filter(function () {
            return $(this).val() == ""
        }).addClass("watermarkOn").val("Name");
    });


});





