I have a very simple registration screen with the following field:
<input id="Email"
name="Email"
placeholder="Email"
required="required "
type="text"
value="" />
<button id="register"
type="button"
onclick="location.href='/Account/Register'">
Register
</button>
My registration screen does not have jQuery available.
How can I make it so that after the user leaves the screen or after he clicks the submit button then an ajax call is made to check if the user email is already in the system.