Results 1 to 6 of 6

Thread: HTML Select tag no scroll

  1. #1
    Join Date
    Jul 2008
    Posts
    65
    Thanks
    42
    Thanked 0 Times in 0 Posts

    Default HTML Select tag no scroll

    I have an HTML Select tag which I set to not dropdown. Is there a way I can also remove the scroll bar, or at least color it? Thanks

  2. #2
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    I don't think that there is a way to remove it, or color it infact, although search a little on google, that may help you.
    Jeremy | jfein.net

  3. The Following User Says Thank You to Nile For This Useful Post:

    hosdank (08-11-2008)

  4. #3
    Join Date
    Jul 2008
    Posts
    65
    Thanks
    42
    Thanked 0 Times in 0 Posts

    Default

    yeah, thanks!

  5. #4
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    Happy to help anytime, if you do find a solution for this, post it in this thread so when people search the forums for the same questions that you ask they can see the answer instead of having to create a new thread.
    Jeremy | jfein.net

  6. #5
    Join Date
    Jan 2006
    Location
    Ft. Smith, AR
    Posts
    795
    Thanks
    57
    Thanked 129 Times in 116 Posts

    Default

    Just curious... but what would be the logic behind using a "select box" if you are going to disable it from performing it's core function?
    --------------------------------------------------
    Reviews, Interviews, Tutorials, and STUFF
    --------------------------------------------------
    Home of the SexyBookmarks WordPress plugin

  7. #6
    Join Date
    Feb 2008
    Location
    Cebu City Philippines
    Posts
    1,160
    Thanks
    17
    Thanked 277 Times in 275 Posts

    Default

    You can however make use of the multiple attribute:
    Code:
    <select multiple="multiple">
    <option>Values</option>
    <option>Values</option>
    <option>Values</option>
    <option>Values</option>
    <option>Values</option>
    <option>Values</option>
    <option>Values</option>
    <option>Values</option>
    <option>Values</option>
    <option>Values</option>
    <option>Values</option>
    <option>Values</option>
    <option>Values</option>
    <option>Values</option>
    <option>Values</option>
    </select>
    Learn how to code at 02geek

    The more you learn, the more you'll realize there's much more to learn
    Ray.ph!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •