appshopper.com onfocus load search field

Discussion in 'Site Feedback and News' started by mrbass, Sep 24, 2009.

  1. #1 mrbass, Sep 24, 2009
    Last edited: Sep 24, 2009
    Arn,

    Please set focus on search field so a user doesn't need to mouse click it to start a search on appshopper.com I usually search there first thing I do and I'm sure many others do to. Quick javascript does the trick.

    Current code:
    PHP:
    </head>
    <
    body>

    ...........

    <
    form name="searchform" method="get" action="/search/" 
    onSubmit="clearCategory('search');">
    <
    input name="search" type="search" class="search" /></form>

    pretty sure you just need to change this to

    PHP:
    </head>
    <
    body OnLoad="document.searchform.search.focus();">

    ............... 

    <
    form name="searchform" method="get" action="/search/" 
    onSubmit="clearCategory('search');">
    <
    input name="search" type="search" class="search" /></form>
    </
    form>
     

Share This Page