$(document).ajaxComplete(function(){
// fire when any Ajax requests complete
})
But what I want is the following:
$.get('http://thepath.to/my/site/and/file.php', function(data)
{
var content_s = $(data).find('#cds_global');
$('#dlm_btn_settings').html(content_s)
});
I want to load a page. From that page, I would like to get a specific <div> hence the ".find" function.
Now, from that <div> whose ID is "cds_global" (Without quotes), I would like to get ALL HTML + JavaScript functionality.... How do I do that?
Edit: BTW, thanks a lot in advanced







