JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://jquery-star-rating-plugin.googlecode.com/svn/trunk/jquery.rating.css">
<script src="http://jquery-star-rating-plugin.googlecode.com/svn/trunk/jquery.rating.js"></script>
<div id="spolka" class="coldt">
                        <div id="nazwa">Alior Bank</div>
                        <div id="ocena" class="star"></div>
                    </div>

JavaScript

// initialize the plugin yourself, like this...
    $(function() {
        
        $('input[type=radio].myClass').each(function(){
         
            // move the element our of the label and the list
            $(this).parents('ul').hide().before(this);
            
        });
        
        // NOW call the plugin
        $('input[type=radio].myClass').rating();
        
        // note how I use "myStar" instead of "star"
        // this is so that I can move the elements before the plugin odes its thing
    });