Сообщение от monolithed
|
Лучше всего делать так:
|
Так будет мигать. Лучше так:
<html id="nojs">
<head>
<script type="text/javascript">document.documentElement.id = 'js';</script>
<style type="text/css">
.nojs { display: none; }
#nojs .nojs { display: block; }
</style>
</head>
<body>
<div class="nojs">Ваш браузер не поддерживает работу с JavaScript!</div>
</body>
</html>