Search code examples
ratingsemantic-ui

Semantic UI rating star is not working


I am a newbie to semantic. I am trying out with rating feature but the stars are not showing up.

Here is the plunker code

<div class="card">
    <div class="image">
        img tag
    </div>
    <div class="extra">
        Rating:
        <div class="ui star rating" data-rating="4"></div>
    </div>
</div>

Solution

  • You have to add this line:

     $('.ui.rating')
        .rating()
      ;
    

    plunker