I already went ahead and read all the possible answers, and I have definitely tried adding
header("Access-Control-Allow-Origin : *");
to the top of my asp page. but didn't solve the problem.
jQuery(document).ready(function(){
$.post('http://www.ike.co.kr/index.asp',
function(pageContent) {
jQuery('.main_left_content_1').load('http://www.ike.co.kr/index.asp .ike_notice');
});});
Here is the ajax call im using.
Of course, all the files are under the one domain, in the same ftp server.
can anyone give me an thorough explanation whay this doesn't work and how to fix it?