JSFiddle - React, Tailwind, and code Playground

HTML

<label class='.pagination_per_page'>kill the bug</label><br/>
<label class='.pagination_per_page'>kill the bug</label><br/>
<label class='.pagination_per_page'>kill the bug</label><br/>

JavaScript

$('label').hover(
            function(e){    
                
                $(this).css('background-color','red');   
    
    $(this).click(function(){
    
 $(this).css('background-color','green');  
$(this).unbind();

}); 
    
                
                }
            ,
            function(){                              
                
                $(this).css('background-color','transparent');   
            });