i have a problem with [C#]WebBrowser.
https://i.stack.imgur.com/LiCAd.png
My app navigation to file index.html. This is content of file index.html
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
<script>
$.ajax({
url:'http://192.168.0.3:8000/device/ping',
type:'POST',
success:function(data){
alert(data);
}
});
</script>
It only working width chrome,IE...
https://i.stack.imgur.com/1CpIn.png
But it not working in WebBrowser
Please help me :) Thank all.