Попробовал так:
var que;
if(location=="http://sitename.ru/forum/profile.php?mode=register&agreed=true"){
var spans=document.getElementsByTagName('SPAN');
for(var p=0;p<spans.length;p++)
{
if(spans[p].className=='gen')
que=spans[p].innerHTML;
}
И вот так:
var que;
if(location=="http://sitename.ru/forum/profile.php?mode=register&agreed=true"){
if(window.onload){
var divs=document.getElementsByTagName('SPAN');
for(var p=0;p<divs.length;p++)
{
if(divs[p].className=='gen')
que=divs[p].innerHTML;
//alert(divs[p].innerHTML);
}
}
Всё равно не выходит.
Как можно проверить загрузилась ли страница с нужным адресом?