Return to Snippet

Revision: 1177
at September 21, 2006 06:06 by powerkan


Initial Code
Test <input type="text" onkeydown="f(this)" onkeyup="f(this)" onblur="f(this)" onclick="f(this)" />

<script type="text/javascript">
function f(o){o.value=o.value.toUpperCase().replace(/([^0-9A-Z])/g,"");}
</script>

Initial URL


Initial Description


Initial Title
javascript auto uppercase

Initial Tags
ie, html, xhtml

Initial Language
JavaScript