spanArr = document.getElementsByTagName('span'); for (i=0; i < spanArr.length; i++) { span = spanArr[i]; if (span.className == 'jurist-response-2') { span.onclick = function() { href = this.parentNode.getElementsByTagName('a')[0].href; location.href = href; } } } divArr = document.getElementsByTagName('div'); for (i=0; i < divArr.length; i++) { div = divArr[i]; if (div.className.indexOf('ib-noa-click') != -1) { if (div.className.indexOf('doc-order') != -1) { div.onclick = function() { location.href = '/faq/sgo-top#zakaz'; } } else { div.onclick = function() { location.href = '/faq/sgo-top'; } } } }