Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">[/URL]
<html xmlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml">[/URL]
<head>
<title>test</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<script type="text/javascript">
function regex(obj) {
var a = obj.value;
if (!/^.{0,200}$/.test(a)) {
alert("field must be between 0 and 200 characters");
obj.focus();
obj.select();
return false;
}
}
</script>
<style type="text/css"></style>
</head>
<body>
<input type="text" onchange="regex(this)" />
</body>
</html>
/(.|\n){0,200}/
/(\d|\D){0,200}/
/(\w|\W){0,200}/