Trouble populating table data in IE7
Hi,
i want to populate a table $(target).html(data); the target is my dynamic div value and data is the place where i get html values.
I works fine in mozilla and it dosent work in IE 7.i dont have any script errors,every thing is working fine,but the table is not displayed.
//my ajax call
$.ajax({
url: $("#parceldt form").attr("action"),
type: "POST",
data: $("#parceldt form").serialize(),
dataType: "html",
success: function(response){
//alert("in ajax---------"+response);
Core.replace("#parcelAdd", response);
}
});
//my jquery replace function
replace: function (target, data, callback) {
$(target).html(data);
if ($.isFunction(callback)) {
callback.apply();
}
Regards,
Murali