-
Notifications
You must be signed in to change notification settings - Fork 2
/
ShowMeMadlibs
133 lines (112 loc) · 3.75 KB
/
ShowMeMadlibs
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<html>
<head>
<title>OurGame</title>
</head>
<body>
<center><b><h1>Our Game </h1></b></center>
<form id="words" onsubmit="javascript:onSubmit()">
<center>
<p></p>
<input type='text' placeholder="phrase" id="phrase">
<input type='text' placeholder="noun" id="noun2">
<input type='text' placeholder="verbs" id="cheese">
<input type='text' placeholder='adjective' id='salt'>
<input type="submit">
</center>
</form>
<div style="display:none" id="theDiv">
<span id="phrase-spot"></span>
<span id="noun2-spot"></span> <span id='to'></span>
<span id="cheese-spot"></span>
<div style="text-align:center; margin:80px;">
Mami you remind me of something<br>
Baby let me put your panties to the side<br>
I'm a make you feel alright<br>
'Cause I'm a give you what you need, yeah<br>
Mami you remind me of something<br>
I don't know what it is<br>
You remind me of something<br>
You gotta show me<br>
Alright, you remind me of something<br>
I don't know what it is right now<br>
You remind me of something<br>
Girl you gotta show me<br>
[Verse 1: Kid Ink]<br>
Uh, on the real no lie<br>
I don't know what it is but you just my type<br>
Everything just right<br>
B set put us to the left<br>
Don't listen to the hype though<br>
Got a cup in your hand<br>
Baby sitting but you ain't got no kids<br>
We ain't leaving 'til there ain't no more left<br>
Can't see no time on the Rolex<br>
I could tell you a freak, go and show it<br>
Looking for the after party, where to go at?<br>
Go on the floor like a doormat<br>
Baby you know where to throw that<br>
I said<br>
[Hook: Chris Brown]<br>
Mami you remind me of something<br>
I don't know what it is<br>
You remind me of something<br>
You gotta show me<br>
Alright, you remind me of something<br>
I don't know what it is right now<br>
You remind me of something<br>
Girl you gotta show me<br>
[Bridge 2: Chris Brown & Kid Ink]<br>
Baby if you know what it is
On the real, can't lie, man just my type<br>
Hands in the air looking for bitch right now<br>
On the real, can't lie, man just my type<br>
[Verse 2: Kid Ink]<br>
Uh, so tell me what your name is<br>
I don't really care who you came with<br>
Unless you got a couple friends look like you<br>
My bad if my ex try to fight you<br>
Roll up soon as I roll in<br>
Security better get with the program<br>
Too deep, ain't know where to stand<br>
So high, ain't know where to land<br>
You remind me of something missing<br>
Misses, you got my full attention<br>
Listen, let go of the tension<br>
If I get a minute, I put your bad ass in detention<br>
[Bridge 1]
[Bridge 2]
[Break: Chris Brown]<br>
Oh baby show me, show me something<br>
Tomorrow I might be hungover, that don't mean nothing<br>
See you all night long, I've been wrong<br>
Baby show me something<br>
You let me do it<br>
</div>
</body>
<script>
saveWords = function() {
theDiv=document.getElementById("theDiv");
theDiv.style.display="block";
p=document.getElementById("phrase");
console.log(p.value);
p2=document.getElementById("cheese");
console.log(p2.value);
n2=document.getElementById("noun2");
console.log(n2.value);
to=document.getElementById("salt");console.log(to.value);
phrase_spot=document.getElementById("phrase-spot")
noun2_spot=document.getElementById("noun2-spot")
cheese_spot=document.getElementById("cheese-spot")
salt_spot=document.getElementById("to")
salt=document.getElementById("salt")
phrase_spot.innerHTML=phrase.value;
noun2_spot.innerHTML=noun2.value;
cheese_spot.innerHTML=cheese.value;
salt_spot.innerHTML=salt.value
};
onSubmit = function() {
event.preventDefault();
saveWords();
};
</script>
</html>