I am trying to access the play button of a vimeo video in my page. Since it's an iframe, I am not able to get the play button using jquery.
Here is the code that tried:
$(".component.video.detail").on("click", ".vp-controls > button", function () {
alert("triggered play button");
});
also this didn't work:
$(document).on("click", ".vp-controls > button", alert("triggered play button"));
Any help or insights will be greatly appreciated.