The following code works fine in firefox but not in chrome.. I'm not so familiar with jquery so please help me.
The ultimate aim is to change the content of a div with class="change" dynamically
$(function(){
$("#content").load("consulting.html");
});
$(".change").click(function(){
var page=$(this).attr('href');
$("#content").load(page);
return false;
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>