I have this markup for my index.html
<html>
<head>
<title>Jquery Ajax</title>
<script src="jquery.js"></script>
<script>
$(document).ready(function(){
$('button').click(function() {
$('#result').load('ajax/about.html');
});
});
</script>
</head>
<body>
<button>Click me</button>
<div id="result">Hel</div>
</body>
</html>
and in my about.html
I have a simple text. When I click the button nothing happens.
Consider that I have used $.get, too. but it does not works. Can someone help?