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.
<script language="JavaScript" type="text/javascript">
<!--
function capitalize(el) {
if(!document.layers) {
el.value = el.value.substring(0,1).toUpperCase() +
el.value.substring(1,el.value.length);
}}
//-->
</script>
<head>
<body>
...
...
<input name="fname" type="text" id="fname" onkeypress="capitalize(this)" />
<script language="JavaScript" type="text/javascript">
<!--
function capitalize(el) {
if(!document.layers) {
el.value = el.value.substring(0,1).toUpperCase() +
el.value.substring(1,el.value.length);
}}
//-->
</script>
onkeypress="capitalize(this)"
<style type="text/css">
H1{
text-transofmr: capitalize;
}
</style>