Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was wondering how I would be able to execute a command such as this in javascript. I just want to store the url as a string in a variable and redirect them to it when the time comes -

var linkz = "http://www.google.com/";
window.location.href= linkz;

Why doesn't this work?

Thanks,

share|improve this question
That should work. Your problem is elsewhere in your code. – RSG Apr 6 '11 at 21:50

2 Answers

up vote 1 down vote accepted

If you're using links this way (as mentioned in a comment):

<a href="javascript:checkCk(google.com)">Google</a>

Then the problem is that you're not passing a string to your checkCk() function.

Try this:

<a href="javascript:checkCk('http://google.com')">Google</a>

The code you used for window.location.href should work.

At this point, I don't see why you'd use javascript if all you're doing is replacing the default behavior of the link.

share|improve this answer
That fixed it. I can't believe I didn't see that =.= Thank you! – Matt Apr 6 '11 at 22:10

I've just tried on my local machine, and it works:

<script>

window.onload = function(){
    var google = "http://google.com";
    window.location.href = google;
}
</script>
Redirecting to google...

Copy this to new file, call it for example redirect.html and open it in your browser.

Update:

<script>

var redirect = function(new_place) {
    window.location.href = new_place;
}

</script>
<a href='javascript:redirect("http://google.com")'>Go to google</a>
share|improve this answer
the only place I could see, is when I pass it - <a href="javascript:checkCk(google.com)">Google</a>; but whats wrong? :( – Matt Apr 6 '11 at 21:56
What do you mean? What is checkCk? – Innuendo Apr 6 '11 at 21:58
its the function and the function is just function checkCK(linkz) { window.location.href=linkz;} – Matt Apr 6 '11 at 21:59
@ Matt. Copy code from my answer, and make a new file test.html. Try it. Will it work? (It will). Than it means - something wrong with your code (earlier - what we can't see) – Innuendo Apr 6 '11 at 22:00
Than you should write javascript:checkCk('google.com'); – Innuendo Apr 6 '11 at 22:01
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.