Using jQuery to create a video switcher
Posted
by techcastoni
on Stack Overflow
See other posts from Stack Overflow
or by techcastoni
Published on 2010-05-22T00:55:09Z
Indexed on
2010/05/22
1:00 UTC
Read the original article
Hit count: 293
I've got a design for a video page which has a main video panel which will load the FLV file into JWPlayer when a thumbnail image is clicked. I think what I'm looking for is a partial page refresh? What is the best way to achieve this effect?
This is the script I am using to display the video panel:
var s1 = new SWFObject('player.swf','player','682','407','9'); s1.addParam('allowfullscreen','true'); s1.addParam('allowscriptaccess','always'); s1.addParam('flashvars','file=Welcome.f4v'); s1.write('preview');© Stack Overflow or respective owner