﻿$(document).ready(function() {
    $("#beta-emailinput").click(function(e) {
        if ($("#beta-emailinput").val() == "example@example.com")
            $("#beta-emailinput").val('');
    });
    $('#sub-form').validate({
        highlight: function(e) {
            $(e).addClass("error");
        },
        unhighlight: function(e) {
            $(e).removeClass("error");
        },
        onkeyup: false,
        submitHandler: function() {
            $.ajax({
                type: "POST",
                url: ws_profile + "/BetaUserEnroll",
                data: '{"email":"' + $("#beta-emailinput").val() + '"}',
                contentType: "application/json; charset=utf-8",
                dataType: "json",
                success: function() {
                    $('#m-text').html('<h7>Thank you. Your request is being reviewed.</h7>');
                }
            });
        }

    });
});