I want to make a link that takes information from 2 text boxes and appends it to a link...I have no clue how to do this, but I figure it is pretty easy...any help?
I want to put 2 text boxes on a web page where a user enters a county code and a state code. They then click a button and in two frames below, links open to
I see a potential problem here if you are hosted on a unix server.
Depending on how the user enters the details, the server will look for different files so you need to make all input to lowercase so that no matter how they enter it, the files will always be correct.
document.forms[0].elements[0].value, document.forms[0].elements[1].value)">
state num :<input type="text"><br>
country num : <input type="text"><br>
<input type="submit"><br>
</form>
</body>
</html> ---------------------------------------
someone knowledge ends where
someone else knowledge starts
function appendlink(link, one, two) {
link += "state=";
link += one;
link += "country=";
link += two;
framename.location = link;
} ---------------------------------------
someone knowledge ends where
someone else knowledge starts
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.