How to copy the contents of a dropdown combo-box?

Caporegime
Joined
9 May 2004
Posts
28,739
Location
Leafy outskirts of London
I have a combo-box with about 100 numbers in it.

I need to send the list of numbers to someone, but can't copy the entire list of the box on the webpage.

Typing them out by hand would take far too long, so I was hoping someone knew of a way to get the entire list copied to my clipboard.

Cheers
 
you can view the source of the webpage, and copy the code for the drop down.

You'll see the options look something like...
Code:
<select name="name">
    <option value="ABC">Label Text</option>
    <option value="ZXY">Label Text</option>
</select>
with a bit of find & relpace you should be able to trim it down to what you need.
 
Back
Top Bottom