Yes you do :)

Disable js and it doesn't happen.

Culprit appears to be this...

<script  type="text/javascript">
// set focus to each field with a mask, to apply default mask to initial
value
if( document.getElementById )
{
    document.getElementById('dayphone').focus();
    document.getElementById('eveningphone').focus();
    // set focus to first field in the form
    if( document.getElementById('firstname').type == "text" )
    {
        document.getElementById('firstname').focus();
    }
}
if( document.all )
{
    document.all['dayphone'].focus();
    document.all['eveningphone'].focus();
    // set focus to first field in the form
    if( document.all('firstname').type == "text" )
    {
        document.all['firstname'].focus();
    }
}
</script>

I don’t see a need to initially focus on a form that far down a page.


-----Original Message-----
From: Will Tomlinson [mailto:[EMAIL PROTECTED] 
Sent: Monday, October 09, 2006 10:15 AM
To: CF-Talk
Subject: What makes this happen?

I have a page that loads, and starts you out halfway down the page. 

http://www.luckydogvolleyball.com/consignment.cfm

What's causing this? There's an anchor further down but I'm not even
referencing it in the link. 

Thanks,
Will



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:255985
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to