سلام دوستان
اخیر بعضی سایتها از کدهای جاوایی استفاده میکنند که هنگام ورورد به سایت یک صفحه "Loading" میاد و بعد ردیرکت میشه به صفحه اصلی
نمونه
http://www.12download-videos.in/
سورس این صفحه
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Loading ...</title>
<script src="/wp-content/themes/Negareh-Edited/js/jquery.js" type="text/javascript"></script>
</head>
<html>
<noscript>Enable java!</noscript>
<div id="status"></div>
<script type="text/javascript">
function check(){
$.ajax({
type: "POST",
url: "/index.php",
data: "allowed=897402c6428bfd321a58249237d6bf16",
success: function(html){if(html == "allowed"){location.reload();}},
beforeSend:function(){
$("#status").html("Loading ...")
}
});
}
$(document).ready(function(){
check();
});
</script>
چطور میتونم اینکار رو روی سایت خودم انجام بدم؟