Page is a not externally linkable
- Code, Content, and Presentation
-- JavaScript and AJAX
---- email validation does not work in IE7


rigaconnect - 9:06 pm on Feb 1, 2013 (gmt 0)


Works in Chrome, Firefox and Safari, but does not work in IE7. Where may be problem?

<script type="text/javascript">
<!-- Email validation
function ValidateEmail(email){

if (email.indexOf(' ') >= 0)//The indexOf() method returns the position of the first occurrence of a specified value in a string.
document.getElementById('CheckEmail').innerHTML = '<font color="#FF0000">Email is not valid. Please delete spaces.</font>';

}
//-->
</script>

<input onkeyup="ValidateEmail(this.value)" name="email" type="text" id="email"><i id="CheckEmail"></i>


Thread source:: http://www.webmasterworld.com/javascript/4541583.htm
Brought to you by WebmasterWorld: http://www.webmasterworld.com