I tried connecting the first text box, so it would turn it into a URL, and then when \'search\' is clicked, it would jump to that website, not sure if it\'s impossible, or i\'m
Here's how I would do it:
Of course you could do this:
onclick="func();"
Or document.getElementById("search-button").onclick = function(){ window.location = document.getElementById('link-box').value; };
Or last of all