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 8813293
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T03:48:45+00:00 2026-06-14T03:48:45+00:00

I have javascript code which returns a partial view. var url1=; $.get(url1, { ‘id’:

  • 0

I have javascript code which returns a partial view.

var url1="";
 $.get(url1, { 'id': Gid }, function (result) {
 $("#abcd").html(result);   
  });

View returning is

<div id="goalReport">
</div>

<script type="text/javascript">

   function LoadReport() {
   }
  </script>

i want to call the load report function on success of the get function i wrote.

How can i call the load report function instead of appending it in a div abcd
i tried like

result.LoadReport

but it is not working

  • 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-14T03:48:46+00:00Added an answer on June 14, 2026 at 3:48 am

    All the things you define in javascript are in the same context. It’s not like C# or some other languages although you have the scope definition and even you can have namespaces. So you can simply change the code to this:

    var url1="";
    
    $.get(url1, { 'id': Gid }, function (result) {
    
         //If the result contains the HTML code you mentioned you should append it to the document
         //and browser will initialize the script tag and everything inside it (So you MUST append the script tag to be initiated). So you can call the 
         //function whenever the script tag is loaded. Because you didn't use the src attribute to 
         // reference a javascript file, I think you can call the function on the next line, after
         // appending the element.
    
         $(result).appendTo(document.body);    
    
          LoadReport();
    
       }
    );
    

    However there is another way that you can find the script contents by some RegEx or string functions and call the "eval" function and initialize it without appending the html code to the document. I myself don’t recommend this way because it’s a buggy idea and it may cause you some silly exceptions.

    Hope it helps
    Cheers

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have code in javascript which get keycodes of different keys and set it
Supposing I have the following code which returns a Javascript object which I can
I have the following javascript code: function initSite(){ var site; $.getJSON(www+'init/initSite', function(data) { site
I have JavaScript code which copies the value of input file and paste it
I have a JavaScript code which links to survey poll page. When I am
Hi Javascript gurus, I have this Javascript code which is working fine on Firefox
i have this javascript code to which i want to add the jquery fade-in
I have the following JavaScript code which I like to convert to jQuery but
I have a javascript code using which I want to accomplish the following .
I have a working JavaScript code below which dynamically creates JSON object using JSON.parse

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.