Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9017697
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T04:20:17+00:00 2026-06-16T04:20:17+00:00

I have code like below: $(‘a.load-more’).on(click,function(){ $.get($(‘a.load-more’).attr(‘href’), function(data) { $(.next-page).remove(); $(‘.block-grid’).append(data); event.preventDefault(); }); The

  • 0

I have code like below:

$('a.load-more').on("click",function(){
    $.get($('a.load-more').attr('href'), function(data) {
   $(".next-page").remove();
   $('.block-grid').append(data);
   event.preventDefault();
});

The html:

<li class="next-page">
<a href="http://example.com/ajax_all/" class="load-more">Load More →</a>
</li>

Which as you can see, takes the url of the ajax content from the .load-more element, passes it to the $get method which then pulls in the content and appends it into the current page.

The odd thing is though, this is working in Chrome but not Firefox or Safari and there are no js errors in the inspectors for those browsers.

Instead of pulling the content in using ajax, it just goes to the url http://example.com/ajax_all/ and displays the content of that.

I’m stumped as to why it would work in Chrome and not Safari or firefox.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T04:20:19+00:00Added an answer on June 16, 2026 at 4:20 am

    You script is invalid, or pasted wrong

    $('a.load-more').on("click", function () {
        $.get($('a.load-more').attr('href'), function (data) {
            $(".next-page").remove();
            $('.block-grid').append(data);
            event.preventDefault();
    
    });
    

    After fixing that it shows that your event.preventDefault(); is happening inside of the get() which is asynchronous.

    $('a.load-more').on("click", function () {
       $.get($('a.load-more').attr('href'), function (data) {
          $(".next-page").remove();
          $('.block-grid').append(data);
          event.preventDefault();
       });
    });
    

    Placing the preventDefault outside of the call back should fix your problem.

    $('a.load-more').on("click", function (e) {
        $.get($('a.load-more').attr('href'), function (data) {
            $(".next-page").remove();
            $('.block-grid').append(data);
    
        });
        e.preventDefault();
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some code like below $(html).on(change, input['data-href'], function() { var href, obj, params;
I have code that looks more or less like the code below but it
I have a data that looks like this . And my code below simply
I have PHP code like below and I want to write a function which
I have a code like below: var ws = new WebSocket(ws://localhost); ws.onopen = function()
I have some javascript code like below function mask(eventVal,val){ var len = val.value.length; var
I have JS code something like shown below: function ValidateBid(source, args) { var txtValue
I have a php function that generates HTML code like below function j_uf_SomeFunction($some_var) {
I have a code like below If I click the finallink class, i want
I have the code like below to get 'content' width, but how come it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.