- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <title>Sample Code</title>
- <script type="text/javascript">
- function CheckUSZipcode(MyZipCode)
- {
- var CheckZipCode = /(^\d{5}$)|(^\d{5}-\d{4}$)/;
- if(CheckZipCode.test(MyZipCode))
- {
- alert("Your Entered Zip Code Is Valid.");
- }
- else
- {
- alert("Your Entered Zip Code Is Not Valid.");
- }
- }
- </script>
- </head>
- <body bgcolor=#00ff00 alink=blue vlink=blue>
- <FORM name="windowEvent">
- US Zip Code : <input type="text" name="txtuszipcode" />
- <input type="button" value="Check" name="btnUSZipCode" onClick="CheckUSZipcode(txtuszipcode.value)" />
- </FORM>
- </body>
- </html>
Loading

Join the conversation! Your thoughts help the community grow.