I'm trying to do something with javascript (I'm a beginner and I'm studying it) and I'd like to know how can I open a link saved in a variable. I'm trying with ...
<input type="button" onclick="document.location.href=Query;" />
Where Query is a variable in the method Ricerca that works with another button
function ricerca()
{
var Link = "http://www.mysite.com/search?q=variabile&k=&e=1";
var Name= document.getElementById('utente').value;
var Query = Link.replace("variabile",Name);
alert(Query);
return false;
}
the other button generates a custom search link ...
input type="text" id="utente">
<input type="submit" value="Click me" onclick="return ricerca();" />
What's wrong with my code?