My javascript code has used innerHTML for changing value in a table list dynamically.
However, I’ve checked IE11 doesn’t let intterHTML to change table value.
Does anyone know the alternative way to change list value in a table instead of innerHTML?
And also could you show me a sample code?
This is a part of my code.
<script type="text/javascript">
/*repeating following process for list_A and list_B*/
var request = new XMLHttpRequest();
request.open("GET", "listValues.php", false );
request.send(null);
document.getElementById("list_"+ tableType).innerHTML=request.responseText ;
//tableType above must be list name A or B//
</script>
<body>
<table color='glay' highth='256'>
<tr/>
<td/ width=64><p id =" list_A" ></p>
<td/ width=64><p id =" list_B" ></p>
</table>
</body>