PDA

View Full Version : Link inside textbox?


Malva
07-30-2002, 02:17 PM
Hi!

Could anyone tell me if it is possible to put a link, or an image, inside a textbox?

Thanx!

x_goose_x
07-30-2002, 03:39 PM
You can't do either of them, but you can add a background to the textbox:

<input type="text" size="20" style="background-image: url('file.jpg)">

and you can have it so if someone clicks on the textbox it goes to a new page:

<input type="text" size="20" onclick="location.replace('http://www.google.com')">

Or you could forget the whole textbox idea and use iframes:

<iframe src="internal_page.htm" width="100" height="20"><iframe>

Then on the ointernal page you can have anything after all it's just another regular html document.

Malva
07-31-2002, 01:08 PM
Thanks a lot!