Jquery/Javascript?? & video? -


i can't find i'm looking for. think because, i'm not sure i'm looking for. have script running. it's working, i'm hosting script on server2012r2 box, video hosted on google.drive account.

how code page variable adding more video? know there way, page can coded load variable content. don't have write new html page every video.... i've been trying google i'm confused. if can point me towards tutorial or proper term i'm looking can accurate info. understand small bit, how jquery this. have found few examples of page scrip player. i'm not sure go there. info needs in link player, player knows video play?

thank you...

<html> <head>     <title>sports</title>     <link href="styles.css" rel="stylesheet" type="text/css"> </head> <style>  header {     height: 50px; width 800px;     background-image: url("headerbg.png");     background-repeat: no-repeat;     background-position: center top;     margin-top: 3px; }  h1 { text-align: center; }  nav {     float: right;      padding-right: 4%;     height: 300px; width: 213px;     background-image: url("navbg.png");     background-repeat: no-repeat; }  p { text-align: center; }  body {     background-image: url("grade.png");     background-repeat: repeat-x;     background-attachment: fixed; } </style>  <body bgcolor=#d3d3d3 link=white vlink=white alink=black>      <header>         <h1><font size="10" face="courier new" color="white">dust glory</font><h1>     </header>      <br><br><br><br>      <nav>         <p>             <a href="https://1bba518163fe958be7ef0564758db2cc8352ecf4.googledrive.com/host/0b2pnutluxbp_fjjprkfyvdq4mg1vwvbyckdqbvdrbwdiejr3wxu5wtzbzthtzhhwbhq4rzq/dtg.mp4" download><font size="6">download</a>         </p>     </nav>      <center>         <video width="60%" height="60%" controls>             <source src="https://1bba518163fe958be7ef0564758db2cc8352ecf4.googledrive.com/host/0b2pnutluxbp_fjjprkfyvdq4mg1vwvbyckdqbvdrbwdiejr3wxu5wtzbzthtzhhwbhq4rzq/dtg.mp4" type="video/mp4"/>              <source src="https://1bba518163fe958be7ef0564758db2cc8352ecf4.googledrive.com/host/0b2pnutluxbp_fjjprkfyvdq4mg1vwvbyckdqbvdrbwdiejr3wxu5wtzbzthtzhhwbhq4rzq/dtg.ogv" type="video/ogg"/>              <source src="https://1bba518163fe958be7ef0564758db2cc8352ecf4.googledrive.com/host/0b2pnutluxbp_fjjprkfyvdq4mg1vwvbyckdqbvdrbwdiejr3wxu5wtzbzthtzhhwbhq4rzq/dtg.webm" type="video/webm"/>         </video>     </center>  </body> </html> 

you can try url encoding

pass in url of video url encoded variable

( http://www.w3schools.com/jsref/jsref_decodeuricomponent.asp )

this required know url of video want load.

you can read url , parse variable , set src of video url encoded url. thus, same page can load many videos long know proper url


Comments