Taki..??

SAFETY CAN BE FUN.....

Kuroi Bara

Lorem ipsum dolor sit amet, consectetuer adipiscing elit Featured Work

Keep in touch

Facebook Twitter Google Plus Deviantart

Can't Block

if (typeof document.onselectstart!="undefined") {
document.onselectstart=new Function ("return false");
}
else{
document.onmousedown=new Function ("return false");
document.onmouseup=new Function ("return true");
}
Read more

Kick Out

top.location.href="URL Yang akan Di tuju";}
Read more

URL Addres Icon

var shortc = document.createElement("link");
shortc.rel = "SHORTCUT ICON";
shortc.href = "URL Gambar";
document.getElementsByTagName("head")[0].appendChild(shortc);
Read more

Running Tittle Bar

var space = " ";
var speed = "170";
var pos = 0;
var msg = "Text Berjalan";
function Scroll()
{
document.title = msg.substring(pos, msg.length) + space + msg.substring(0,pos);
pos++;
if (pos > msg.length) pos = 0;
window.setTimeout("Scroll()", speed);
}
Scroll();
Read more

Disable Click Right

var message="Isi Pesan Jika Di Click Kanan";

function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")
Read more

JS Multi Injection

scriptFolder = 'URL JS'
scripts = new Array()
scripts[0] = 'nama file1.js'
scripts[1] = 'nama file2.js'
scripts[2] = 'nama file3.js'

for(x in scripts){
myscripts = document.createElement('script')
myscripts.src = scriptFolder+scripts[x]
document.getElementsByTagName('head')[0].appendChild(myscripts)}
Read more

Effect Move

scrW=screen.availWidth
scrH=screen.availHeight
window.resizeTo(10,10)
window.focus()
for(a=0;a<80;a++){
window.moveTo(0,0)
window.resizeTo(0,scrH*a/80)
}

window.resizeTo(0,0)
for(b=0;b<80;b++){
window.moveTo(0,scrH/1)
window.resizeTo(scrW*b/80,0)
}

for(c=0;c<80;c++){
window.moveTo(scrW/1,scrH/1)
window.resizeTo(0,scrH*c/80)
}

for(d=0;d<80;d++){
window.moveTo(scrW/1,0)
window.resizeTo(scrW*d/80,0)
}

for(e=0;e<80;e++){
window.resizeTo(scrW*e/80,scrH*e/80)
}

window.moveTo(0,0)
window.resizeTo(scrW,scrH)
Read more

Effect Vibrate

function Shw(n) {if (self.moveBy) {for (i = 77; i > 0; i--) {for (j = n; j > 0; j--) {self.moveBy(1,i);self.moveBy(i,0);self.moveBy(0,-i);self.moveBy(-i,0); } } }} Shw(14)
Read more

Disable Keyboard

function keypressed() {
alert("Isi Pesan Jika Keyboard Di Tekan");
}
document.onkeydown=keypressed;
// End -->
Read more

Css Injection

var css = document.createElement("link");
function injectcss() {
if(window.cssinjected == undefined) {
cssinjected = 1;
var css = document.createElement("link");
css.setAttribute("type","text/css");
css.setAttribute("rel","stylesheet");
css.setAttribute("href","URL CSS");
css.setAttribute("media","screen, print");
document.getElementsByTagName("head")[0].appendChild(css);
}
}injectcss();
Read more

Clock In Tittle Bar

var scroller;
var ampm;
var actualtitle=document.title+" "
function antiMilitaryTime()
{
if (hr == "12"){
ampm="P.M."
}
else if (hr == "13"){
hr="1"
ampm="P.M."
}
else if (hr == "14"){
hr="2"
ampm="P.M."
}
else if (hr == "15"){
hr ="3"
ampm="P.M."
}
else if (hr == "16"){
hr = "4"
ampm="P.M."
}
else if (hr == "17"){
hr = "5"
ampm="P.M."
}
else if (hr == "18"){
hr = "6"
ampm="P.M."
}
else if (hr == "19"){
hr = "7"
ampm="P.M."
}
else if (hr == "20"){
hr = "8"
ampm="P.M."
}
else if (hr == "21"){
hr = "9"
ampm="P.M."
}
else if (hr == "22"){
hr = "10"
ampm="P.M."
}
else if (hr == "23"){
hr = "11"
ampm="P.M."
}
else if (hr == "24"){
hr = "12"
}
}
function addZero(){
if (min <= "9"){
min = "0"+min
}
if (sec<= "9"){
sec = "0"+sec
}
if (hr <=9){
hr = "0"+hr
}
}
function time(){
dt=new Date()
sec=dt.getSeconds()
hr=dt.getHours()
ampm="A.M."
min=dt.getMinutes()
}
function scroll() {
time()
antiMilitaryTime()
addZero()
var scroller="TIME: "+hr+":"+min+":"+sec+" "+ampm
var timeout=setTimeout("scroll()", 1000)
document.title=actualtitle+scroller
}
if (document.all||document.getElementById)
scroll()
Read more

GoodBye Alert

Biasa :
function goodbye(){
alert("Isi Pesan");
}
parent.window.onunload=goodbye;

Dengan Confirmation :
function goodbye()
{
var isikomendulubodoh=confirm("Isi Pesan")
if (isikomendulubodoh)
{}else
{window.location="URL Jika Klick Cancel"}
}
parent.window.onunload=goodbye;

Read more

Welcome Alert

Biasa :
alert("Isi Pesan");

Dengan Confirmation :
if (!confirm("Isi Pesan"))
window.location="URL Jika Click Cancel"

Hanya Untuk Internet Explorer + Confirmation
var browser=navigator.appName;
if(browser=="Microsoft Internet Explorer")
{
var LanjutApaNggak=confirm("Isi Pesan")
if (LanjutApaNggak)
{}else
{window.location="URL Jika MengClick Cancel"}
}
else{}


Read more