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.
function ValidateText(Argument)
{
Argument = Argument.replace(/ /g,"");
return Argument;
}
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">[/URL]
<html xmlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml"[/URL] xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></meta>
<title>JavaScript Sample</title>
<script src="Sample.js" type="text/javascript"></script>
</head>
<body>
<form name="MainForm">
<p>Enter text below and click outside the text area to "validate" it.</p>
<textarea rows="10" cols="50" name="Texty" id="Texty" onblur="document.MainForm.Texty.value=ValidateText(document.MainForm.Texty.value);"></textarea>
</form>
</body>
</html>