faqts : Computers : Programming : Languages : JavaScript : Links

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

3 of 7 people (43%) answered Yes
Recently 3 of 7 people (43%) answered Yes

Entry

How can I replace part of a URL with text enterd via a box eg: www.mysite/"variable" java or html?

Feb 25th, 2002 22:40
John Smith, Martin Radloff,


<form name="form1">
<input type=text name="url1">
<input type="button" value="goto url" onclick="window.open
('http://www.geocities.com/'+document.form1.url1.value)" target="self">
</form>