Support Forums

The forums are closed and will be removed when we launch our new site.

Looking for support? You can access the support system via your account.

Forums Forums Search & Filter Pro Hide Ajax results until submit is clicked

Viewing 2 posts - 1 through 2 (of 2 total)
  • Thriveworks Counseling
    #154745

    Has anyone accomplished this? I tried with the following, but I dont think the results will load in a hidden div…

    <script>

    jQuery(document).ready(function(){

    jQuery(‘.search-filter-results’).click( function(e) {

    e.preventDefault(); // stops link from making page jump to the top
    e.stopPropagation(); // when you click the button, it stops the page from seeing it as clicking the body too
    jQuery(‘.search-filter-results’).show();

    });

    jQuery(‘.search-filter-results’).click( function(e) {

    e.stopPropagation(); // when you click within the content area, it stops the page from seeing it as clicking the body too

    });

    jQuery(‘body’).click( function() {

    jQuery(‘.search-filter-results’).hide();

    });

    });
    </script>

    You can see i’ve gotten it to work the other way (submit button hides results) – http://thriveworks.alphaintelknows.com/franchise-job-search/

    Trevor Moderator
    #154775

    Do you want to hide results so nothing shows until someone makes an actual search? If so, this post will help:

    https://support.searchandfilter.com/forums/topic/force-selection/#post-87657

Viewing 2 posts - 1 through 2 (of 2 total)

The forum ‘Search & Filter Pro’ is closed to new topics and replies.