Reputation: 140
var f="http://www.google.com"; 'f' is a variable there is a link stored in f. Is there anyway to place a link which can redirect us to a link in variable f?
Upvotes: 0
Views: 79
Reputation: 146
var f="http://www.google.com"; //redirect code<br> location.href = f
Reputation: 382826
Is there anyway to place a link which can redirect us to a link in variable f?
Use window.location Docs:
window.location
var f="http://www.google.com"; window.location = f;
Upvotes: 2