Wednesday, November 10, 2010

Form Focus

One thing I find annoying on web pages is when there is a form you are expected to fill out, such as a login form, and the focus is not on the first field.

Edit /app/views/users/login.ctp and add to the bottom of the page:
<script type="text/javascript">
document.getElementById('UserUsername').focus() 
</script>
Save and upload the file then browse to http://drug-ed.com/users/login and verify the username field has focus.

No comments:

Post a Comment