is there anyway for the title in option tag to be displayed always?
<select>
<option title="sometitle" value="">1</option>
</select>
any ideas please?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Just give it a
widthwith help of a little CSS. In real webbrowsers the dropdown list width will automatically expand to the largest option when you open it. Only in a certain webbrowser developed by a team in Redmond the dropdown list width won’t expand like that. It will hide large options which is indeed very hairpulling.In that browser, you can use Javascript to control the width during the desired events. You can find a jQuery based example in this answer: Dropdownlist width in IE