We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a handler that handle a tap event and I want to prevent the click to do the action
<a href="http://www.google.ca" title="google" on-click="register:1">click here</a> <a href="http://www.google.ca" title="google" on-tap="register:1">tap here</a> <script> ractive.on('register', function(event){ event.original.preventDefault() alert('YO'); return false }) </script>
If i use click event, i'm not redirected to google but I am within the tap event (on ie11)
The text was updated successfully, but these errors were encountered:
I can confirm that on IE9, IE10 and IE11 too. Any thoughts what could be @Rich-Harris? I'm pretty sure it worked at some point?
Sorry, something went wrong.
No branches or pull requests
I have a handler that handle a tap event
and I want to prevent the click to do the action
If i use click event, i'm not redirected to google
but I am within the tap event (on ie11)
The text was updated successfully, but these errors were encountered: