
October 17th, 2000, 10:51 AM
|
|
Junior Member
|
|
Join Date: Mar 2000
Posts: 2
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
I have some popups on my page that AOL doesn't display correctly. Every other browser works, but AOL shows the information offset to the side so that only part of it is visible. If the user resizes the popup window even a smidgen, the page within "snaps back" into place the way it should have when the window popped up.
function image_popup(popImage){
var w = window.open(popImage, "popup", "width=450, height=500");
w.moveTo(200,100);
w.resizeTo(460,520);
I put the resize in there hoping it would fix the problem, but it doesn't work. Any ideas?
------------------
|