|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stay one step ahead of the competition. Evaluate and give feedback
on some of the hottest web development tools on the market today.
Make your opinion heard! Click
Here
|
|
#1
|
|||
|
|||
|
Scrolling Links
I've got a script that generates a potentialy long list of links and I would like to display them in some sort of scrolling box within the confines of the current page layout. A pull down menu would be way to big and as far as I know... text boxes can't have links in them. Any ideas about how I could implement this?
|
|
#2
|
||||
|
||||
|
RE: Scrolling Links
you could use an iframe.
|
|
#3
|
|||
|
|||
|
RE: Scrolling Links
yes, an iframe would be the way to go...see anyone of the code pages on this site...
|
|
#4
|
|||
|
|||
|
RE: Scrolling Links
not realy. you can use a simple <div> tag to achive the same effect. just add couple of css properties to a style attribute:
Code:
<div style="position:absolute; left:91px; top:33px; width:103px; height:61px; overflow: auto;"> blah blah, links links... blah blah, links links... blah blah, links links... blah blah, links links... blah blah, links links... </div> the most important css attribute here is "overflow: auto;" that will show the scrollbars only when there are more links than space... (adjust size to your likening...) |
|
#5
|
|||
|
|||
|
RE: Scrolling Links
How about a listbox?
|
![]() |
| Viewing: Codewalkers Forums > Other Technologies > Client Side Things > Scrolling Links |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|
|
|