john pfeiffer
  • Home
  • Categories
  • Tags
  • Archives

jsp include javascript file textbox focus

Right click Web Content -> New File -> name it javascript.js , add content below:

function setFocus()
{
    var temp = document.getElementById( 'userName' );
    temp.focus();
        //document.forms[ 'login' ].elements[ 'userName' ].focus();
}


Modify the Login.jsp to include the following:
<body>
    <script type='text/javascript' src="/ProjectName/javascript.js"></script>


    <script type='text/javascript'>
        setFocus();
    </script>

  • « jetty webapps
  • jsp Login »

Published

Mar 3, 2012

Category

java-servlet

~41 words

Tags

  • file 92
  • focus 3
  • include 6
  • java-servlet 61
  • javascript 43
  • jsp 5
  • textbox 7