Hi Radek,
Thanks for your reply..
I tried setting meta tag to force browser to use compatibility view. But same problem persists.
I have added simple html code below which does not work in IE11 but works fine with IE9 and other browsers.
=================html code========================================================================
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9"/>
<title>test2</title>
<style type="text/css">
.auto-style15
{
font-family: Arial;
font-size: small;
color: #000000;
text-align: center;
position: static;
}
.auto-style28
{
font-family: Arial;
font-size: small;
}
</style>
<script type="text/javascript" src="script/temprequest.js"></script>
<script type="text/javascript">
setInterval(replace,1000);
</script>
</head>
<body>
<table style="overflow: hidden; width: 250px;table-layout: fixed;visibility:visible;" id="Table1" class="auto-style28">
<tr>
<td class="auto-style15" id="datetime" style="width: 255px">
?
</td>
</tr>
</table>
</body>
</html>
================================================================================
==============temprequest.js code==================================================
var counter=100;
function replace()
{
document.getElementById('datetime').innerHTML = counter;
counter++;
}
================================================================================
If I write the replace function in the same html page; then IE11 works fine. But if I write it in external javascript file(temprequest.js) and include it in html; then IE11 goes into waiting for response loop on refresh.
Kindly let me know if you have any suggestions.
Thanks,
Swapnil