I try to make a request from client to server using Jquery and Ajax, but it doesn't work. I even tried Ajax and Xml, but still not working. Can somebody help me for this issue ? Here is my code. For sure that jquery-1.6.2.js is on same directory than .html file, also client and server are connected at same internet network.
Thanks.
<html>
<head>
<script type="text/javascript" src="jquery-1.6.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("div").load('http://myIPserver/isrhiproxy/isr_stm_info.aspx?requestType=101&query=20110823;1435;53173;any;139;n');
});
});
</script>
</head>
<body>
<div>Horaire Bus 139</div>
<button>Voir</button>
</body>
</html>