<!-- player -->
<div class="SMplayer">
<div style="background:black; width:750px; height:400px;">
<script type="text/javascript">
function change()
{
var html = '<iframe width="750px" height="400px" src="';
html += document.myvid1.vid_select.options[document.myvid1.vid_select.selectedIndex].value;
html += '" frameborder="0" allowfullscreen></iframe>';
document.getElementById("div-video").innerHTML = html;
}
</script>
<form name="myvid1">
<select style="position: absolute; padding: 7px; background: #ee7b00; border: none; margin: 5px; outline: none; border-radius: 3px; color: white; font: 12px bpg;" id="vid_select" onchange="change();">
<option value="http://vk.com/video_ext.php?oid=238272286&id=168301944&hash=438504b4021f6eee">სერია 1</option>
<option value="http://vk.com/video_ext.php?oid=238272286&id=168397658&hash=5aa83fe87a76108a">სერია 2</option>
<option value="http://vk.com/video_ext.php?oid=238272286&id=168560600&hash=69dbfb771a0552d4">სერია 4</option>
</select>
</form>
<div id="div-video">
<iframe width="750px" height="400px" src="http://vk.com/video_ext.php?oid=238272286&id=168301944&hash=438504b4021f6eee" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</div>
<!-- player -->
|