Fast Clicks

Fast clicks is a built-in library that removes click delay from links and form elements in mobile browser while you click them. You can disable this built-in library if you want to use other third party fast clicks script by using touch.fastClicks:false App parameter:

  1. var app = new Framework7({
  2. touch: {
  3. // Disable fast clicks
  4. fastClicks: false,
  5. }
  6. });

no-fastclick Class

If you want to disable Fast Clicks on some specific element then just add no-fastclick class to the required element

  1. <a href="#">Fast Click</a>
  2. <a href="#" class="no-fastclick">Usual Click</a>