I am working on a delete item function. Its working fine in all browsers but In IE fail to retain it's scroll position. I want to keep the same position after reload of the page
function _removeItem(element) {
var $target = $(element),
prodId = $target.data("id");
something.call('something', {
productId: prodId
}).done(function() {
window.location.reload();
});
}