-1

Youtube iframe api. How disable touch focus? I need to have the video play immediately and not get a mouse event(click descop and touchmove in mobile).

nisar
  • 1,055
  • 2
  • 11
  • 26

1 Answers1

0

You can use css (into your iframe parent tag)

{pointer-events: none;} 

if you want permanently remove touch move, you can use these class.

if conditionally, you need to work on detect the video is start point and end point, start point add this class into your parent iframe , when video ended remove the class.

refer would be useful

nisar
  • 1,055
  • 2
  • 11
  • 26