Jump to content
  • 0

Multiple Search Buttons


Clint

Question

5 answers to this question

Recommended Posts

  • 1
On 11/10/2017 at 3:29 PM, Clint said:

I have a long search form with a number of optional checkboxes that are necessary when needed, but infrequently used. 

Is there a way I can place an additional search button at the top of the page so users don't have to scroll to the bottom to perform a search?

Thanks!

try placing the following code in an html block above all the fields:

<input type="submit" name="searchID" id="searchID1" value="Search" class="cbSearchButton">

 

Link to comment
Share on other sites

  • 1
On 11/17/2017 at 3:08 PM, telepet said:

The above code works wonderfully, and enables a little more flexibility when it comes to layout.  I wonder, is it possible to do hide the default "Search" button?  I'm attempting to incorporate a search page where there is a "Reset Search" button next to a "Search" button.

You may hide a standard button using the following code in  the header of the search page:

<style>
#searchID 
{
display:none;
}
</style>

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...