Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Playing WMV file in a pop up

Status
Not open for further replies.
Mar 11, 2004
127
0
0
GB
Hi,

On my site I have a few videos, and normally the user will click the thumbnail and download the file.

What I would like to do to the site is, when they click the thumbnail, the video will launch into a new popup window.

Could someone help me out please?

Thanks,
Ant
 
The following code to open a new window:

Code:
function openWin(url) {
   window.open(url, '', '');
}

You can call this from a link with:

Code:
<a href="yourVideoURLHere.xxx" onclick="openWin(this.href); return(false);">link</a>

Hope this helps,
Dan



Coedit Limited - Delivering standards compliant, accessible web solutions

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top