Select the textfield and focus : TextField : Form Control JAVASCRIPT DHTML TUTORIALS


JAVASCRIPT DHTML TUTORIALS » Form Control » TextField »

 

Select the textfield and focus




<html>

<head>
<script type="text/javascript">
    function setfocus(){
        document.forms[0].txt.select()
        document.forms[0].txt.focus()
    }
</script>
</head>

<body>
<form>
<input type="text" name="txt" size="30" value="Hello World!"
<input type="button" value="Select text" onclick="setfocus()"
</form>
</body>

</html>



           
       



-

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

JAVASCRIPT DHTML TUTORIALS

 Navioo Form Control
» TextField