Quote:
Originally posted by George Bush Jr.
The page that you want to blur should have the blur code on it. Not the code that pops the page you want blurred. Although i suppose you could do it that way.
anycode = window.open(
anycode.blur();
window.focus();
something like that you would have to fool with it a bit
|
Looks like this was correct, in the body on the page that I wanted to blur I put in onload="window.blur();" and it works perfectly.