-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (24 loc) · 1.11 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
</head>
<body">
<p>*Note: This page creates popups. You'll have to approve them if your browser blocks them.*</p>
<p>What product do you want to further enslave yourself to capitalism for, you consumer whore you.</p>
<input type="text" id="boxu" autofocus>
<script>
document.getElementById("boxu").onkeydown = function(e) {searchy(e)};
function searchy(e)
{
if (e.which == 13)
{
var q = document.getElementById("boxu").value;
window.open("http://www.google.com/search?q=amazon+bestselling+" + q + "&btnI");
window.open("https://slickdeals.net/newsearch.php?forumchoice%5B%5D=4&forumchoice%5B%5D=9&forumchoice%5B%5D=10&forumchoice%5B%5D=13&forumchoice%5B%5D=25&forumchoice%5B%5D=30&forumchoice%5B%5D=38&forumchoice%5B%5D=39&forumchoice%5B%5D=41&forumchoice%5B%5D=44&forumchoice%5B%5D=53&forumchoice%5B%5D=54&forumchoice%5B%5D=71&q=" + q + "&firstonly=1");
window.open("https://slickdeals.net/newsearch.php?forumchoice%5B%5D=30&forumchoice%5B%5D=71&mode=all&q=" + q + "&r=1&searchin=first&vote=10");
document.getElementById("boxu").value = "";
}
}
</script>
</body>
</html>