Nikolay37,
Сообщение от Nikolay37
|
a is not defined
|
Браузер FF ?
А такой вариант
<html>
<head>
<script>
var a;
window.onload = function() {
a = 'привет Body';
};
</script>
</head>
<body>
<script>
setTimeout(function() {
alert(a);
}, 1);
</script>
</body>
</html>