8 lines
264 B
JavaScript
8 lines
264 B
JavaScript
window.onload = function()
|
|
{
|
|
document.getElementById("sebedestrukce").onclick = (e) = function()
|
|
{
|
|
document.getElementById("sebedestrukce").style.color = "#800500";
|
|
document.getElementById("sebedestrukce").style.fontWeight = "bold";
|
|
}
|
|
} |