IE doesnt refresh data when call ajax

IE doesnt refresh data when call ajax

//call from basket txt file
$.ajax({
    type:"GET",
    url:"usrbasket/userno.txt",
    data:"",
    success: function(msg){
    
        $('.baskettbl').html('');//clean basket
        $('.baskettbl').append(msg);//fill basket (also again)

        }
    }); 

I try above codes; to held datas in a text file. When user add any item, codes look at that text file and add item into it again. But Internet Explorer (trouble maker) doesnt refresh that text file like in Chrome. Therefore basket is always as first time. Do you know another way to refresh txt file and append to $('.baskettbl') ???