I found the solution to this problem today. Problem was: Working buttonOnClick method was not working on the tablet screen because of different performAction handling required. Solution approach: I tried all of the methods in this code block below: reloadButton.addEventListener('click', function() { console.log('clickworked'); reloadFunctionBlock(); }); These are all the methods that I tried both on a computer with a mouse click and Android tablet screen with a finger tap on the screen Methods of performActions: touchstart, touchmove, touchend, touchcancel, tap , gesturestart , gesturechange , gestureend , mousedown, mouseup, mouseenter, mouseleave, click, dblclick, focus, blur, keydown, keyup, input, change, resize, scroll, wheel, drag, drop. These are the ones that I found working both on computer and tablet views: touchend, touchstart thenI decided to use touchend for safety and maybe the user wants to correct their wrong performing etc. Thank you for your help.
... View more