Skip to content

Instantly share code, notes, and snippets.

@JavaScript-Packer
JavaScript-Packer / holy-bible-random-verse.js
Created March 25, 2016 02:07
Random Verse From Holy Bible. Made by www.BibleThumper.net
var randomverse=new Array();
var versetitle=' <font size="4"><b><a href="http://www.holybibleverse.com">Random Bible Verse</a></b><br /></font>';
// by www.BibleThumper.net
randomverse[1]='Set your affection on things above, not on things on the earth.<br/><b>Colossians 3:2</b>';
randomverse[2]='For all have sinned and come short of the glory of God<br/><b>Romans 3:23</b>';
randomverse[3]='Come unto me, all ye that labor and are heavy laden, and I will give you rest.<br/><b>Matthew 11:28</b>';
randomverse[4]='Not everyone that saith unto me, Lord, Lord, shall enter into the kingdom of heaven; but he that doeth the will of my father which is in heaven.<br/><b>Matthew 7:21</b>';
randomverse[5]='For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life.<br/><b>John 3:16</b>';
randomverse[6]='For the wages of sin is death, but the gift of God is eternal life in Christ Jesus our Lord<br/><b>Romans 6:23</b>';
randomverse[7]='Let t
@JavaScript-Packer
JavaScript-Packer / power-top.js
Created March 26, 2016 06:33
Bookmarklet to get a web page back to the top without having to scroll all the way back. Add a link too bookmarks, then edit URL to be the JavaScript code provided.
javascript:void(function(){window.scroll(0,0)}());void(0);
@JavaScript-Packer
JavaScript-Packer / for-the-gay-guys.js
Last active July 21, 2020 00:36
Gay related bookmarklets (best for Chrome or FireFox web browser). Hacks to get free large images on gay dating/hookup sites with a free membership account. Add a link too bookmarks, then edit URL to be the JavaScript code provided. Made by www.WHAK.com
/* Go to http://jsfiddle.net/5v5r8npk/ for drag & drop link marklets, easiest way to add to bookmarks! */
// BareBackRT.com
javascript:var _='',$=document,whaks = document.getElementsByTagName("img");for (var i = 0, whak; whak = whaks[i]; i++) {_+='<img src="'+whak.src.replace(/\x26\x73\x3d/g,"&s=1")+'"> ';};$.body.innerHTML=_+'<hr>Visit <a href="http://www.whak.com">www.WHAK.com</a><hr>'+$.body.innerHTML;void 0;
// Adam4Adam.com
javascript:var $=document;$.body.innerHTML='<img src=%22'+large_img+'%22><hr>Visit <a href=%22http://www.whak.com%22>www.WHAK.com</a><hr>'+$.body.innerHTML;void 0;
// Squirt.org
javascript:var _='',$=document,whaks = document.getElementsByTagName(%22img%22);for (var i = 0, whak; whak = whaks[i]; i++) {_+='<img src=%22'+whak.src.replace(/\x26\x70\x73\x3d/g,%22&ps=1&%22)+'%22> ';};$.body.innerHTML=_+'<hr>Visit <a href=%22http://www.whak.com%22>www.WHAK.com</a><hr>'+$.body.innerHTML;void 0;
@JavaScript-Packer
JavaScript-Packer / triple-click-top-of-page.htm
Created April 1, 2016 09:42
Triple clicker JavaScript function, click 3 times fast! Adjust to higher like four or five clicks if you want!
<body>
<h1 onclick="window.scroll(0,7000)"><u style="color:blue">Click HERE to go to bottom!</u></h1>
<script>
window.addEventListener('click', function (x) {
if (x.detail === 3) {
window.scroll(0,0);
}
});
@JavaScript-Packer
JavaScript-Packer / right-click-menu.htm
Created April 3, 2016 07:27
Replace the right click menu on your webpage using JavaScript!
<html><head><title>Right Click Context Menu JavaScript Replacement - WHAK.com</title></head><body bgcolor="silver"><h1>TOP</h1><h3>Right Click Menu In JavaScript</h3><hr size="7000" color="gray">
<script>
function a(b){c=document.all?event.clientX+document.body.scrollLeft:document.a?b.x+window.pageXOffset:b.clientX+window.pageXOffset;d=document.all?event.clientY+document.body.scrollTop:document.a?b.y+window.pageYOffset:b.clientY+window.pageYOffset}var e,f,g,c=0,d=0;void 0!=document.addEventListener?document.addEventListener("mousemove",a,!0):document.a&&document.captureEvents(Event.b|Event.c|Event.f);document.onmousemove=a;document.oncontextmenu=function(){return!1};document.onmousedown=function(b){3==b.which&&(document.getElementById("contextmenu").style.left=c+"px",document.getElementById("contextmenu").style.top=d+"px",document.getElementById("contextmenu").style.visibility="visible")};document.onmouseup=function(b){1==b.which&&(document.getElementById("contextmenu").style.visibility="hidden")};e=250,g=doc