I had this problem and I had all the console references commented out in the scripts, but it was still failing in IE only (11). I found the solution was to add cache false to my AJAX calls.
$.ajax({
**cache: false,**
type : 'GET',})
All my inputs have the attribute autocomplete="off"