aynı zamanda aşağıdaki linkte hover a dair herhangi bir bilgi bulamadım.javascriptin adam akıllı bir ing/tr kaynağı yok mu?
https://www.ecma-international.org/e...ification-type
jQuery(document).ready(function($) {
"use strict"
document.querySelectorAll('*').forEach(function(node) {
const style = window.getComputedStyle(node);
const color = style.getPropertyValue('color');
const Bcolor = style.getPropertyValue('background-color');
if (color === 'rgb(22, 160, 133)') {
$("ul.colors .color1").on('click', function() {
node.style.setProperty("color", "red", "important"); //sayfada ne kadar yeşil text color varsa kırmızıya çeviriyor butona basınca.aynı text lerin hoverlarını da sarıya çevirmek istiyorum.
return false;
});