Сообщение от kostyanet
|
А кто тогда рисует слово null?
|
Откуда у Вас там строка взялась?
<html>
<head>
<title> test </title>
</head>
<body >
<p id="p">p</p>
<script>
elem=document.querySelector("#p")
some=elem.getAttribute('no_such_attr_at_all')
alert(typeof (elem.title=some))
</script>
</body>
</html>