8 lines
264 B
JavaScript
Raw Normal View History

2023-06-02 10:44:54 +02:00
window.onload = function()
{
document.getElementById("sebedestrukce").onclick = (e) = function()
{
document.getElementById("sebedestrukce").style.color = "#800500";
document.getElementById("sebedestrukce").style.fontWeight = "bold";
}
}