Simply Redirect to

Developer
Size
1,989 Kb
Views
8,096

How do I make an simply redirect to?

What is a simply redirect to? How do you make a simply redirect to? This script and codes were developed by Moncho Varela on 21 January 2023, Saturday.

Simply Redirect to Previews

Simply Redirect to - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Simply Redirect to</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
</head>
<body> <script src="js/index.js"></script>
</body>
</html>

Simply Redirect to - Script Codes JS Codes

// open console and paste this on any website to see
// redirect to
redirect('http://exmple.com');
// callback function for end progress funciton
function redirect(el){	return progress(function(){	location.href = el;	});
}
// progress(callback)
function progress (_success){	// create two elements	var a = document.createElement('span');	var b = document.createElement('span');	var w = 0;	// progress style	a.className = 'progress-info';	a.style.position = 'fixed';	a.style.top = '0';	a.style.left = '0';	a.style.right = '0';	a.style.bottom = '0';	a.style.width = '100%';	a.style.height = '100%';	a.style.padding = '2em 0';	a.style.textAlign = 'center';	a.style.display = 'block';	a.style.fontSize = '100px';	a.style.fontFamily = 'sans-serif';	a.style.color = '#f55';	a.style.background = 'rgba(250, 250, 250, 0.8)';	a.style.zIndex = '99999999999999';	// counter style	b.className = 'bar';	b.style.position = 'fixed';	b.style.top = '0';	b.style.left = '0';	b.style.height = '0.1em';	b.style.display = 'block';	b.style.background ='#f55';	b.style.width = '0%';	b.style.zIndex = '99999999999999';	// append elements	document.body.appendChild(a);	document.body.appendChild(b); // progress function	var t = setInterval(function(){	w = w+1;	// show number	a.innerHTML = w + '%';	// show bar	b.style.width = w + '%';	// on finish	if (w === 100){	clearInterval(t);	w = 0;	if(_success()) return _success();	}	},20);
}
Simply Redirect to - Script Codes
Simply Redirect to - Script Codes
Home Page Home
Developer Moncho Varela
Username nakome
Uploaded January 21, 2023
Rating 3
Size 1,989 Kb
Views 8,096
Do you need developer help for Simply Redirect to?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Moncho Varela (nakome) Script Codes
Create amazing art & images with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!