Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have select

    <select id="parentId" name="parentId"><option value="1">ФАСАДНАЯ ШТУКАТУРКА&lt;BR /&gt;&lt;B&gt;&amp;#0171;STUC-O-FLEX&amp;#0187;&lt;/B&gt;</option>
<option value="2">ФОНТАНЫ И САДОВАЯ МЕБЕЛЬ&lt;BR /&gt;&lt;B&gt;&amp;#0171;ALEXANDER ROSE&amp;#0187;&lt;/B&gt;</option>
</select>

how can i make to show html items not their codes?

share|improve this question

3 Answers

up vote 2 down vote accepted

I assume you want to style the contents of your <option>s with various HTML formatting. I am afraid this is not possible.

You will have to use a JavaScript-driven alternative.

See for example 11 jQuery Plugins to Enhance HTML Dropdowns

share|improve this answer

The text within an HTML select option renders as pure text, not HTML, so this is not directly possible.

You will have to use a javascript solution.

share|improve this answer

You want

<select>
  <option>Item</option>
  <option>Item</option>
</select>

Notice no BRs in there.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.