jquery not working in IE but fine in FF...
Posted
by user302764
on Stack Overflow
See other posts from Stack Overflow
or by user302764
Published on 2010-03-26T18:10:24Z
Indexed on
2010/03/26
18:13 UTC
Read the original article
Hit count: 92
jquery-ajax
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);
}
});
}
© Stack Overflow or respective owner