How can I make conditional binding in knockout.js?

Viewed 25242

I tried this one :

<div data-bind="attr: {class: itemSelected? 'selected' : 'unselected' }"></div>

But it does not work :)

2 Answers
Related