Html Select Problem -
i have long text in html select element. when user selects 1 option text displayed long select is.
what best solution make usable , clear ?
example
<select> <option>very long text 1</option> <option>very long text 2</option> <option>very long text 3</option> </select>
the user see " long t " because of select element length. there jquery script or trick make entire text visible ?
i truncate display value (using ...
suffix) won't mess drop down list, set actual long value option title
:-
<select> <option value="1" title="the brown fox jumped on fence">the brown fox...</option> ... </select>
Comments
Post a Comment