Fixed position issues in Android and iOS
Inspect Touch Events
//Copy and paste these into your JavaScript console
window.addEventListener('touchstart',function(event){
console.log('touchstart: ', event)
});
document.getElementById('toucharea').addEventListener('touchstart',toggle);
window.addEventListener('touchmove', function(event){
console.log('touchmove: ', event);
});
window.addEventListener('touchend',function(event){
console.log('touchend: ', event);
});
Measure image load on placekittens