I'm trying to extract some information from a external website with Jquery .load() method, But this doesn't seem to be working, any thoughts why? I tested on both firefox and chrome.
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("#div1").load("http://www.weather.com/weather/5-day/CEXX0001 #wx-forecast-container");
});
});
</script>
</head>
<body>
<div id="div1"><h2>Let jQuery AJAX Change This Text</h2></div>
<button>Get External Content</button>
</body>
</html>