Title: Feature request for mobile
Last modified: August 30, 2016

---

# Feature request for mobile

 *  [bMighty2](https://wordpress.org/support/users/bmighty2/)
 * (@bmighty2)
 * [11 years ago](https://wordpress.org/support/topic/feature-request-for-mobile/)
 * When using a featured image as a placeholder for the video, and on a desktop,
   the hover triggers the play icon – which is great.
 * However, on mobile there is no touchevent to trigger the same hover.
 * I’ve temporarily overcome this by add the playicon.png with an ::after on the.
   fvp-dynamic element, but I think it would be great to just add a hover class 
   and trigger with touch.
 *     ```
       $('.fvp-dynamic').on("touchstart", function (e) {
           'use strict'; //satisfy code inspectors
           var link = $(this); //preselect the link
       		if (link.hasClass('hover')) {
       		return true;
           } else {
           link.addClass('hover');
       		$('figure').not(this).removeClass('hover');
       		e.preventDefault();
       		return false; //extra, and to make sure the function has consistent return points
           }
         });
       ```
   
 * then just give the .hover class the same rules the the .fvp-loader div gets.
 * make sense?
 * [https://wordpress.org/plugins/featured-video-plus/](https://wordpress.org/plugins/featured-video-plus/)

The topic ‘Feature request for mobile’ is closed to new replies.

 * ![](https://ps.w.org/featured-video-plus/assets/icon.svg?rev=1170997)
 * [Featured Video Plus](https://wordpress.org/plugins/featured-video-plus/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/featured-video-plus/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/featured-video-plus/)
 * [Active Topics](https://wordpress.org/support/plugin/featured-video-plus/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/featured-video-plus/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/featured-video-plus/reviews/)

 * 0 replies
 * 1 participant
 * Last reply from: [bMighty2](https://wordpress.org/support/users/bmighty2/)
 * Last activity: [11 years ago](https://wordpress.org/support/topic/feature-request-for-mobile/)
 * Status: not resolved