こんにちは私はjqueryuiselectableの使い方を理解するための非常に簡単なフィドルを持っています:
しかし、それはうまくいかないようです。誰もがそれの何が問題なのか知っていますか?
こんにちは私はjqueryuiselectableの使い方を理解するための非常に簡単なフィドルを持っています:
しかし、それはうまくいかないようです。誰もがそれの何が問題なのか知っていますか?
Your last line in the CSS should be:
#container .ui-selected { background: #F39814; color: white; }
Working fiddle:
Your CSS is wrong.
Change this:
#selectable .ui-selected { background: #F39814; color: white; }
To this:
#container .ui-selected { background: #F39814; color: white; }