The following ajax function call not retrive the data in firefox3.0.16 if i used post type,But it is working good in IE7 ,if i used get method i can retrive the data in both the Browser(IE and Firefox).Why?
function ABC() {
$.ajax({
type: 'post',
dataType: 'json',
url: Url,
success: XXX
})
};