Всем доброго время, подскажите пожалуйста как заставить работать такую конструкцию
<script type="text/javascript">
window.onload = afterLoad;
function afterLoad() {
var maina = document.getElementsByClassName('top_menu_test'); // находим узел
var newAttr1 = document.createAttribute('rel'); // создаем атрибут
newAttr1.value = 'nofollow'; // устанавливаем значение
maina.setAttributeNode(newAttr1); // привязываем атрибут
};
</script>
<a class="top_menu_test" href="http://mail.ru">http://mail.ru</a>