Help
I have the jquery code below. it works in IE only. I need to know how to make it work in firefox chrome and safary. someone said I have to add -moz, -webkit, -o but I don't know how. any help please.
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div id="stage">
</div>
<script>
$( "#stage" ).load( "http://127.0.0.1/LoadPageInDiv/list1.html" );
</script>
</body>
</html>