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

  • Home
  • SEARCH
  • 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 6237331
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T11:00:31+00:00 2026-05-24T11:00:31+00:00

I have jQuery code that runs fine when a view is render. However, I

  • 0

I have jQuery code that runs fine when a view is render. However, I want this same code to run after an Ajax request is successful. The jQuery was originally performed when the document was ready, but I moved it to it’s own function so it can be called. The function adds a few simple classes to some label elements. Here is what I have so far:

$(function () {
    afterLoad();
});

$.ajaxSetup({
    success: function () {
        afterLoad();
    }
});

function afterLoad() {
    // code to execute
}

This doesn’t execute properly after making a simple Ajax request:

$('#ajaxTest').load('<MVC Route>')

A partial view is returned just fine, but afterLoad() attempts to run before the partial view is in the DOM. If I were to execute the same call again afterLoad() does run (on the previous partial view), but then it gets overwritten by the new partial view.

Any thoughts? Another approach to this would be fine, I’m looking for a was to get the site-level .js file to run after an Ajax request for a partial view. The master page loads the site.js file, and I would like to execute it’s code without reloading the file (since it’s already been loaded by the browser). Also, I don’t want to have to force developers to do anything different with their Ajax calls so it needs to work with a simple .load(), etc.

  • 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-05-24T11:00:32+00:00Added an answer on May 24, 2026 at 11:00 am

    This is what I use for what your trying to do:

    You also have access to the XHR object should you need to access it.

    //Global Ajax Complete
    $("body").bind("ajaxSend", function(e, xhr, settings){
        //Sent
    }).bind("ajaxComplete", function(e, xhr, settings){
        //Complete
    }).bind("ajaxError", function(e, xhr, settings, thrownError){
        //Error
    });
    

    EDIT:
    This is the structure I have, which has been working for me.

    site.js

    function afterLoad() {
        // code to execute
    }
    $(document).ready(function(){
        $("body").bind("ajaxComplete", function(e, xhr, settings){
               afterLoad();
        });
    });
    

    Created a quick fiddle. is this what you mean?

    Edit Two:

    You might want to have a listener on the DOM for any <form> element that appears then run your afterLoad() function. This might be a performance hog so I would use it cautiously.

    I use livequery to do this

    $('form').livequery(function(){
        afterLoad();
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some jQuery/JavaScript code that I want to run only when there is
I have this code in jQuery, that I want to reimplement with the prototype
I have some jQuery code that runs fine until I add the jQuery UI
I have this jQuery code that queries an API on a keyup event (via
I have some jQuery code. I have called an Ajax function file, file.php, that
I have some jQuery code that runs on every $(document).ready() event. I also have
I have a jQuery slideshow code that works fine with the following HTML structure:
I have this jquery code that for a normal browser allows you to have
I have the following JQuery code that worked perfect in C#/Asp.net 2.0 to call
Say I have jquery code like this: html += '<div class=index>' + item.index +

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.