sashaovc
07-02-2006, 05:19 AM
I've tried:
function add(a, b, c)
{
b.onclick=function(){
top.location.replace('?b=' + a + '&e=' + c);
};
b.accesskey='';
window.open('?add=' + a);
d.b.focus();
}
and:
function add(a, b, c)
{
b.onclick=function(){
top.location.replace('?b=' + a + '&e=' + c);
};
b.setAttribute('accesskey','')
window.open('?add=' + a);
d.b.focus();
}
I thought maybe it was because it was passed to a function, but the onclick part of it works... Thank you in advance.
function add(a, b, c)
{
b.onclick=function(){
top.location.replace('?b=' + a + '&e=' + c);
};
b.accesskey='';
window.open('?add=' + a);
d.b.focus();
}
and:
function add(a, b, c)
{
b.onclick=function(){
top.location.replace('?b=' + a + '&e=' + c);
};
b.setAttribute('accesskey','')
window.open('?add=' + a);
d.b.focus();
}
I thought maybe it was because it was passed to a function, but the onclick part of it works... Thank you in advance.