This might be a noob question. I need a script to redirect to URL and refresh that URL every 5 minutes.
i start with:
<!DOCTYPE html>
<html>
<head>
<title>Example</title>
<script>
function init()
{
window.location.href = "my URL";
}
</script>
</head>
<body onload="init()">
</body>
</html>
it will open my URL, but if i try some refresh in meta tag, it doesnt working, i need refreshing that redirected URL.