REGISTRATION
// Validate the Entered input aganist the generated security code function function check(input) { var cap =removeSpaces(document.getElementById('txtCaptcha').value); if (input.value != cap ) { input.setCustomValidity( "Please Check! the numbers"); } else { // input is fine -- reset the error message input.setCustomValidity(''); } }