-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvotetest.html
58 lines (57 loc) · 2.52 KB
/
votetest.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<html>
<head>
<meta name=viewport content="width=device-width, initial-scale=1">
<script>
function getVote(int) {
if (window.XMLHttpRequest) {
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
} else { // code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function() {
if (this.readyState==4 && this.status==200) {
document.getElementById("poll").innerHTML=this.responseText;
}
}
xmlhttp.open("GET","poll_vote.php?vote="+int,true);
xmlhttp.send();
}
</script>
</head>
<center>
<a href="http://smallorangehands.com/" rel="home">
<img src="http://smallorangehands.com/soh.png" width="100%" onclick="hi()">
</a>
</center>
<script>
function hi()
{
document.cookie = "vote=1; expires=Sat, 20 May 2018 00:00:00 EST;";
}
</script>
<body>
<div id="poll">
<center>
<h3>Vote For The Video That You Think Is The Best</h3>
<br><br>
<form>
<iframe class="youtube-player" type="text/html" src="http://www.youtube.com/embed/VKddUoxX4UE?version=3&rel=1&fs=1&autohide=2&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent" allowfullscreen="true" style="border: 0px; display: block; margin: 0px; width: 345px; height: 202.688px;" data-ratio="0.5875" data-width="1200" data-height="705"></iframe>
<br><br>
<button type="button" name="vote" value="0" onclick="getVote(this.value)"> Vote For Pets</button>
<br><br>
<br><br>
<iframe class="youtube-player" type="text/html" src="http://www.youtube.com/embed/yES2lsxODBA?version=3&rel=1&fs=1&autohide=2&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent" allowfullscreen="true" style="border: 0px; display: block; margin: 0px; width: 345px; height: 202.688px;" data-ratio="0.5875" data-width="1200" data-height="705"></iframe>
<br><br>
<button type="button" name="vote" value="1" onclick="getVote(this.value)"> Vote For Voices</button></td>
<br><br>
<br><br>
<iframe class="youtube-player" type="text/html" src="http://www.youtube.com/embed/8mliMJpprCY?version=3&rel=1&fs=1&autohide=2&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent" allowfullscreen="true" style="border: 0px; display: block; margin: 0px; width: 345px; height: 202.688px;" data-ratio="0.5875" data-width="1200" data-height="705"></iframe>
<br><br>
<button type="button" name="vote" value="2" onclick="getVote(this.value)"> Vote For Sticks & Stones</button>
</form>
</form>
</div>
</center>
</body>
</html>