JSFiddle - React, Tailwind, and code Playground

by SpiceLab

HTML

<div id="thüringen">Thüringen</div>

CSS

#thüringen {color:blue}

JavaScript

$("#thüringen").on("mouseover", function() {
  $(this).css("color", "red");
});