accessoires – invisa cook
jQuery(document).ready(function($) {
// Die richtigen IDs basierend auf den Screenshots
$('#input_1_4, #input_1_5, #input_1_2, #input_1_6').on('input focus click keydown keyup', function() {
// Mehrere Eigenschaften setzen für maximale Kompatibilität
$(this).css({
'color': '#ffffff',
'-webkit-text-fill-color': '#ffffff',
'caret-color': '#ffffff'
});
});
// Wiederkehrende Überprüfung alle 100 ms
setInterval(function() {
$('#input_1_4, #input_1_5, #input_1_2, #input_1_6').css({
'color': '#ffffff',
'-webkit-text-fill-color': '#ffffff',
'caret-color': '#ffffff'
});
}, 100);
});