Is it possible to stylize the different options in a jquery mobile custom select menu (http://jquerymobile.com/demos/1.2.0/docs/forms/selects/custom.html)?
My project needs the background of the different options to be different color. I’ve been searching for a while now and have not come across a solution.
Thanks for any help.
Here’s how I resolved this.
This is my select menu:
CSS:
Although this added different styles to the jQuery Mobile custom select, the selected item after selection lost the required styles.
So, more css:
…and a little jquery:
This code has been tested to work on both iPad and Samsung Galaxy 10.1 tablet.
Demo: http://jsfiddle.net/Debarupa/7TsVM/
Hope it would help somebody else.
Thanks Aurelio De Rosa for pointing me to the right direction.