Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • brentwilliams2 Friend
    #203234

    When I turn off Ajax pagination, there is a problem with the pagination, in that it doesn’t use the anchor “#Top”. This means pressing the next page sends them to the bottom of page 2, not the top.

    So I need to add “#Top” to the URL within the pagination. You can see what I mean by using the pagination here: http://www.multifamilyinsiders.com/apartment-jobs

    Luna Garden Moderator
    #557528

    Yes, I see the problem. You can fix it by go to this file:
    componentscom_jajobboardjsja.jobboard.js
    find for:

    function jaAjaxUpdate(request) {
    if ($('ja-loader')) $('ja-loader').setStyle('display', 'none');

    var JTooltips = new Tips($$('#jobboard-content .hasTip'), {
    maxTitleChars: 50,
    fixed: false
    });
    if (typeof(document.adminForm) !== 'undefined') {
    form = document.adminForm;
    }
    }

    and change to:
    function jaAjaxUpdate(request) {
    if ($('ja-loader')) $('ja-loader').setStyle('display', 'none');

    var JTooltips = new Tips($$('#jobboard-content .hasTip'), {
    maxTitleChars: 50,
    fixed: false
    });
    if (typeof(document.adminForm) !== 'undefined') {
    form = document.adminForm;
    }
    window.scrollTo(0, 0);
    }

    Try and tell me know the result.

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

This topic contains 2 replies, has 2 voices, and was last updated by  Luna Garden 9 years, 5 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum