i am stuck here with a little jQuery Problem! I am using this code to load the content of a html file (bio.html) into a div containter (content). This works in IE8 and Firefox 6, but not in Google Chrome!
Any ideas what i might be doing wrong? Heres the Code:
<head>
<title>Test</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script type="text/javascript" src="./js/jquery.min.js"></script>
</head>
<div id="content">
hi
</div>
<script type="text/javascript">
$(document).ready(function(){
$('#content').load('./html/bio.html');
});
</script>