Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a jQuery ajax call that returns html of a table. Now I need to let user to do some javascript action on the table.

Can the return ajax response contain the javascript code or do I have to load the javascript code in the page on the first load of the page?

The user has the option of triggering the 'new' javascript. It doesn't have to triggered on ajax call.

share|improve this question

6 Answers

up vote 2 down vote accepted

To answer the actual question, the return response can contain the script. Simplest is to place it after the html, as the ready event has already fired in page it is being loaded into

share|improve this answer
So I would let the server retun a html tag <table> and then <script> tag? – Radek Jun 23 '12 at 7:19
yes, will work fine, with script tag after the html, so the elements will exist when it fires – charlietfl Jun 23 '12 at 7:24
very simple to test using $(selector).load( url) could even be an empty page with just a body tag $('body').load(url) – charlietfl Jun 23 '12 at 7:25

You can use the success (or other event) callbacks provided with jQuery .ajax() to perform this JS action. Something like this:

$.ajax({
   success: function(){
     // Perform JS action
   }
}

The jQuery API lists all such event callbacks available for AJAX calls. Check this for more info.

share|improve this answer

The returned ajax response can contain javascript code as a string. Then you can eval(response).

share|improve this answer
no need for eval when is returned by jQuery ajax in script tags – charlietfl Jun 23 '12 at 4:50
no need for script tags when you use eval :-) – Lyn Headley Jun 23 '12 at 4:53
how does that work for progressive enhancement?? – charlietfl Jun 23 '12 at 4:57

If you want to request a script with ajax that will be run when retrieved, then you can use jQuery's getScript() method to retrieve it and then execute it.

Per the jQuery doc, getScript() is a shorthand for:

$.ajax({
  url: url,
  dataType: "script",
  success: success
});

Which shows that jQuery's ajax command will handle a returned script for you automatically if you set the data type appropriately.

share|improve this answer

You can make your request a variable and extend upon it after the set up.

// Make the request to the server
var dataID = $("#WhatINeedForAParameter").val();
var request = $.ajax({
  url: "PageOrControllerOrWebApi/MethodName",
  type: "POST",
  data: { id : dataID },
  dataType: "json"
});

// When the request is done process
// what you need done
request.done(function(msg) {
  alert('You got this ' + msg);
});

// If the request failed you can
// see what the problem was and
// handle the situation accordingly
request.fail(function(jqXHR, textStatus) {
  alert( "Your request failed: " + textStatus );
});
share|improve this answer

you can do it using success callback i think this can be a way please try

$.ajax({
   .....,
   .....,
   success:  
    var script = document.createElement( 'script' );
    script.type = 'text/javascript';
    script.src = url;
    $("#tableID").append( script );
    });

i hope it should help.

share|improve this answer
what is the best way to look at js that has been loaded in this manner? I am trying to use Firebug and i do not see the dynamically loaded js. – greg Apr 11 at 20:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.