If they always want the first field focused, you could do something
like this and let it run on every page:

<script>
function setFocus()     {
        if ( typeof ( document.forms[0] ) != "undefined" )      {
                document.forms[0].elements[0].focus();
        }

}
</script>

<body onload="setFocus()">

On 8/12/05, Jordan Gouger <[EMAIL PROTECTED]> wrote:
> Hey guys I was wondering if anyone might have a suggestion on how to
> accomplish this: 
>   
> I'm working on a FBX3 project that typically has multiple nested circuits
> and many of the fuses are form pages. On pages like this, they would like
> the first field in the form to be auto-focused when the page loads. I know
> this is easy to do in a non fbx site, but how does one go about getting that
> to work in the top level fbx_layout page? 
>   
> Thanks, 
>   
> Jordan
> 
>    
>  


-- 
~Dave Shuck
[EMAIL PROTECTED]
www.worldwildweb.biz
----------------------------------------------------------
To post, send email to [email protected]
To unsubscribe:
   http://www.dfwcfug.org/form_MemberUnsubscribe.cfm
To subscribe:
   http://www.dfwcfug.org/form_MemberRegistration.cfm


Reply via email to