I have
$.ajax({ url: identity, success: function(data) { ProcessIdentityServer(data) } });
When \'data\' is returned, is there a way to
You have to define a container first, to be able to get/modify the elements from the response:
$.ajax({ url: url + "/ajax.htm", dataType: "html", success: function(html) { container = $('#ajax_content'); container.html(html); container.find("a").css("background","red"); } });