tags:

views:

41

answers:

1

This works perfectly in FF and Safari but not in IE... Here is the function:

  function my_totals(){
 $.ajax({
     type: "GET",
     url: "ajax.php",
    data: "action=my_items",
    success: function(data){
      $("#usage").html(data);
     }
 });
}
A: 

You can look here

Karl Swedberg said:

one possibility is that you're trying to inject invalid markup with .html(). I noticed this causing problems with a plugin I wrote. For example, inserting something like <div>this is a div with no closing div tag caused IE to churn

Also see this post

I hope it helps you...

Aito