BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
function create()
{
if($("#dateOfBirth").valid())
{
$.ajax({
url: 'url',
cache: false,
type: 'POST',
contentType: 'application/json; charset=utf-8',
success: function (data) {
alert("Client Added Successfully");
}
}).fail(
function (xhr, textStatus, err) {
alert("An error occurred while attempting to Add this client");
});
}
} |