Hi, I used this method to load page ...
function remoteCall(sUrl, sQueryStr, sCalledBy)
{
var str = " { ";
$.post(sUrl,sQueryStr, function(data){
sResponse[sCalledBy] = data; //alert(data);
eval(" "+sCalledBy+"()");
});
}
but when i changed $.post to $.get it doesn't work actually i need to change this bcoz i am loading this page from remote page....
Please Help.
Thanks.