so I am trying to access some content in an external php file (not on my domain) however I can browser to the content but I cannot access it via jquery ajax here is my code:
function newarticle()
{
var ajax_load = "<img src='images/spiral.gif' align='center' alt='loading...' />";
//load() functions
var loadUrl = "http://www.webapp-testing.com/includes/newarticles.php";
$("#articles").click(function(){
$("#pagetitle").html(ajax_load).load("New Articles");
$("#listarticles").html(ajax_load).load(loadUrl);
});
}
what am i doing incorrect to access this content?