Jump to content

Ajax not working in IE


Nithya

Recommended Posts

you'll need to give more details on what's not working. But since you are making a grid, make sure to add a tbody to the table, otherwise, nothing will show on it.

 

Example

var table = document.createElement('table');
var tbody = document.createElement('tbody');
table.appendChild(tbody);
var tr = document.createElement('tr');
tbody.appendChild(tr);
var td = document.createElement('td');
td.innerHTML = 'hello';
tr.appendChild(td);
document.body.appendChild(table);

 

If you use this example, run it after the page loads.

thank you for your kind reply. i had done all these stuffs. When i click on save button, all the data get stored into the database. But its not getting updated to the grid. But i am facing this problem only if i am using IE. In firefox, the grid display is happening well once after i click on save. could u plz give me the solution for this.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.