I want to play Youtube video on web-view using iframe
but it is not working.
Youtube video link: https://www.youtube.com/watch?v=RkWQDDv_qdg.
Asked
Active
Viewed 52 times
-2

Matt
- 1,245
- 2
- 17
- 32

Thuận Thành
- 21
- 4
-
2What's not working? Can you provide the code that is not working? – dcangulo Oct 16 '18 at 03:42
1 Answers
0
What I did is instead of using this:
https://www.youtube.com/watch?v=RkWQDDv_qdg
I used this:
https://www.youtube.com/embed/RkWQDDv_qdg
as the source of the iframe
tag.
<iframe height="720" width="1280" src="https://www.youtube.com/embed/RkWQDDv_qdg">
</iframe>
Here is a fiddle that I created for a demo: http://jsfiddle.net/c47kmrnL/

dcangulo
- 1,888
- 1
- 16
- 48