Hi all, I want to redirect a blog to another url using javascript. can anyone tell me the process? Any Ideas are welcome. Thanks in advance.
window.location="http://www.yourdomain.com/"; or location.replace("http://www.yahoo.com"); - I believe the first option is more compliant and supported
You can also do it without javascript with meta redirect <meta http-equiv="Refresh" content="1;url=http://www.domain.com/link.html">
also be aware that the source blog wont last long in google if you use a meta refresh or a java redirect.