Greetings Experts,
Sorry that I have to post this here because it has both Javascript and Asp.net in one file.
The code below works:
<html>
<head>
<title>test vimeo</title>
<script type="text/javascript">
function openWindow(path)
{
window.open(path, '', 'width=780,height=680,toolbar=no,location=no,directories=no,statu s=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=yes');
}
</script>
<script type="text/javascript">
$(function(){
var vimeoPlayer = document.querySelector('iframe');
jQuery('iframe').each(function(){
Froogaloop(this).addEvent('ready', ready);
});
function ready(player_id) {
froogaloop = $f(player_id);
function setupEventListeners() {
function onPlay() {
froogaloop.addEvent('play',
function(){
$(&quo ...
Go to the complete details ...