![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Programmer
Join Date: Feb 2005
Posts: 86
Rep Power: 0
![]() |
an address bar(sort of)
if you go to http://www.w3schools.com/html/tryit....=tryhtml_basic in another tab or window it will be easier to understand what im trying to ask
<html> <body> <b>Address:</b> <input type="text" name="URL"> <input type="button" value="Enter"> </form> </body> </html> if you go to the link and paste the code in the box, it will show you what it looks like i want someone to be able to enter in the address of a website in there and when they hit "enter" it goes if u dont understand what im asking then say that im not specific enough, but i think its self explanitory |
|
|
|
|
|
#2 |
|
Expert Programmer
Join Date: Aug 2005
Location: Rotterdam, the Netherlands
Posts: 942
Rep Power: 4
![]() |
please do not double post.
|
|
|
|
|
|
#3 |
|
Professional Programmer
|
You need a javascript jump menu. Google for that, and there's one built into dreamweaver if you have that
|
|
|
|
|
|
#4 |
|
Troll
Join Date: Apr 2005
Location: Texas
Posts: 732
Rep Power: 4
![]() |
You mean a page within a page? Try an IFRAME
__________________
MD5(sig) = bcef75433db02e9ad9bf81d6f7c5c270 |
|
|
|
|
|
#5 |
|
King of Portal
|
Not sure if this is what you're looking for, but this code uses javascript to achieve what I think you're describing. Basically, the person enters a URL into the text box, clicks on Enter, and then the window travels to that particular URL.
<html> <body> <b>Address:</b> <input type="text" name="address"> <input type="button" value="Enter" onClick="location.href=address.value"> </body> </html> Hope this helps.
__________________
Lo, there do I see my father. 'Lo, there do I see My mother, and my sisters, and my brothers. 'Lo, there do I see The line of my people... Back to the beginning. 'Lo, they do call to me. They bid me take my place among them. In the halls of Valhalla... Where the brave... May live... ...forever.. GrimBB | Mimesis |
|
|
|
|
|
#6 | |
|
Programmer
Join Date: Sep 2005
Posts: 58
Rep Power: 3
![]() |
Quote:
|
|
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|