Всем привет. Столкнулся с такой проблемой, не работает смена цвета фона в сафари, в <div id="block">BLOCK</div> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title></title> <style type="text/css"> #block{ margin:auto; width:200px; height:100px; text-align:center; line-height:100px; border:solid 1px; background-color: #b5ff71; } </style> <script type="text/javascript"> function red() {document.getElementById("block").style.backgroundColor="red"} function blue() {document.getElementById("block").style.backgroundColor="blue"} function pink() {document.getElementById("block").style.backgroundColor="pink"} function yellow() {document.getElementById("block").style.backgroundColor="yellow"} </script> </head> <body> <div style="text-align:center;margin-bottom:20px;"> <a href="#" onclick="red()">RED</a> <a href="#" onclick="blue()">BLUE</a> <a href="#" onclick="yellow()">YELLOW</a> <a href="#" onclick="pink()">PINK</a> </div> <div id="block">BLOCK</div> </body> </html> Что нужно изменить или что добавить чтоб заработало, или есть может альтернативы этому всему. Спасибо.