var url = "countAction.do?method=count&t"+new Date().getTime();
$.ajax({ 
    url: url, 
    //data: 'username=' + usvalue, 
    dataType: 'html', 
    type: 'post', 
    success: function (txt) { 
          //do something. 
    } 
}); 


