Well here seems to be a fix that is going around. I'm not sure if it's related, but if so I would love to know where to drop this code to fix the issue.
The solution, just add this code in the top of the iscroll.js
var last_click_time = new Date().getTime();
$("a").live("click", function(ev) {
var click_time = ev["timeStamp"];
if (click_time && (click_time - last_click_time) < 1000) {
ev.stopImmediatePropagation();
return false;
}
last_click_x = click_x;
last_click_y = click_y;
last_click_time = click_time;
});