Results 1 to 1 of 1

Thread: filter search result should display in new page

  1. #1
    Thread Starter
    Expired Customer joydeziners's Avatar
    Join Date
    Mar 2016
    Location
    Dubai
    Posts
    24
    Thanks
    0
    Thanked 1 Time in 1 Post

    filter search result should display in new page

    hi,

    I have Custom Filter Search filter in My site, (kargal.in) the script is

    if(maincat == ""){
    alert("Please select the main category.");
    return false;
    }else {
    $(".searchCnt").html('<div class="srchloader"><img src="<?php echo site_url();?>/search_loading_img.gif"><br /> Loading...</div>');
    $.ajax({
    type: "GET",
    url: "<?php echo site_url();?>",
    data: {
    action: 'search',
    maincat: maincat,
    subcat1: subcat1,
    subcat2: subcat2,
    subcat3: subcat3,
    searchkey: searchkey,
    },
    cache: false,
    async: true,
    success: function(responsedata)
    {
    $(".post-block-out").remove();
    if(responsedata != ""){
    $(".searchCnt").html(responsedata);
    }
    else {
    $(".searchCnt").html('<div class="srchnoRec">No ads found.</div>');
    }
    }
    });

    }

    });

    });



    It display only in the current page where i mention the the Class in the current page <div class=".searchCnt"> </div>

    the result page should display in new page. help Me

    thank you

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. 403 Forbidden page on search result
    By 4keysdigital in forum Report Vantage Bugs (Legacy)
    Replies: 7
    Last Post: May 28th, 2016, 11:13 AM
  2. How to change the "Refine Result" Advance Search to display at bottom
    By scchoo in forum ClassiPress General Discussion
    Replies: 2
    Last Post: July 22nd, 2014, 03:28 AM
  3. Two sidebars on search result page
    By adunoon in forum Help Using Vantage (Legacy)
    Replies: 0
    Last Post: November 6th, 2013, 08:54 PM
  4. Paging at search result page
    By uacomm in forum Olinda
    Replies: 12
    Last Post: October 11th, 2013, 08:45 AM
  5. Search result display issue
    By jaidev in forum Report ClassiPress Bugs
    Replies: 1
    Last Post: April 23rd, 2010, 06:22 PM