Сообщение от DivMan
|
Почему разные ответы?
document.getElementById('id'); //null
var id = document.getElementById('id'); //undefined
|
Бивас, тест! (с)
var id = document.getElementById('id');
alert(document.getElementById('id'));
alert(id)
Ответ одинаковый - null.