hi,
my $.post code returns a whole page i want to get only content inside a id from that . this is my code it alerts null.
what's wrong with it..?
$(document).ready(function(){
var url_select_file = "index.php";
$.post(url_select_file, { component: "tinymce_details", action: "selecticondata" },
function(data){
//alert(data);
alert($(data).find('#ContentPane').html());
}
);