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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.