Bi blogger teması var. Nasıl kodlanmışsa bilmiyorm. footeri siliyorm site yapımcının sitesine yönlendiriyor. Şifreleme türü: JS

<script>
$(document).ready(function(){
//Let's first setup the redirect
function redirect(){
window.location.assign('http://www.jojothemes.com');
}

//which things we got to check
function check(){
if($('#credits').length === 0){
redirect();
}

else if($('#creditlink').length === 0){
redirect();
}

else if($("#creditlink").attr("href") !== "http://www.jojothemes.com"){
redirect();
}

else if($('#creditlink').text() !== "JOJOThemes"){
redirect();
}
}
//execute the function on page load
check();
//excute the function at the intervals of 5 seconds.
setInterval(function () {check()}, 5000);
});
</script>


Footer Kısım:

All Rights Reserved by © 2014 - 2015

Designed by JOJOThemes



Biz bu bölümü nasıl kaldırırız?