Code
Execute
<!DOCTYPE html> <html> <head> <title>html tutorial - html5 - html code - html form - In 30Sec by Microsoft Award MVP - | wikitechy HTML onplay attribute</title> <base href="../tryit/"> </head> <body> <h1><span>html tutorial - </span>Wikitechy HTML onplay attribute</h2> <video width="300" height="300" controls onplay="onPlay()"> <source src="hibiscus.mp4" type="video/mp4"> </video> <script> function onPlay() { alert("The Wikitechy video starts playing"); } </script> </body> </html>
Result