[jQuery] Jquery Prbolem in firefox
$("#divid").html(data) function of jquery is working fine in IE7 and
IE6. but in firefox it is not working. it is not giving me html
output. Anybody can help me how to use it in firefox.
my funntion is this.
function doData(p_id,cat,cat_id,first,last){
document.getElementById("doContainer").innerHTML="";
$.ajax({
url : "doData.php?p_id="+ p_id +"&cat="+ cat +"&cat_id=" + cat_id ,
success : function (data) {
$("#doContainer").html(data);
}
});
}