jquery not working in IE but fine in FF...
- by user302764
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);
}
});
}