JSFiddle - React, Tailwind, and code Playground
by collabcoders
HTML
<div id="content">
<div class="player_marktwert_box">
Hello World!
</div>
</div>
JavaScript
var originalValue;
$('#content').on('mouseenter', '.player_marktwert_box', function(){
originalValue = $(this).html();
$(this).html("test");
}).on('mouseleave', '.player_marktwert_box', function() {
$(this).html(originalValue);
});