Hi,
I have used innerHtml in my java based web application. JavaScript works fine with Mozilla Firefox but it is not working in InternetExplorer.
Could you please tell me how to make it work in Internet Explorer too. or what is substitute of innerHTML in IE.
Code is:
function show() {
if('number' == typeof this.rowIndex) {
var rn = this.rowIndex;
var cell = tableRows[rn].cells;
employeeCode = cell[0].innerHTML;
//..........
}
}
Thank and regards