When using MrMaksimize and Alex Blacks implementation of Google FastButton I get two clicks in iOS.
Try this fiddle: http://jsfiddle.net/Cotten/zQsVZ/
var a = new FastButton(document.getElementById('a'), function() {
alert('click');
});
<div id="a">First click me</div>
<div id="b">Then, click here and nothing should happen... but it does :(</div>
- zoom in on the results pane
- click the green button, which shows an alert
- press ok, everything looks fine
- then click the red or the blue div, which do not have the FastButton(..)
- it fires the alert again :(
I get this wrong behavior on iPhone 4S iOS 6 and iPad 3 with iOS 5.1.
On android it seems to work.
I get the same weird behavior with jquery.tappable.js.
Thanks!