|
Posted by Ivo on 11/09/57 11:25
"vvega" wrote
> I have a script which opens on click a new window in a certain way,
> without browser's windows objects. The problem is that in the same first
> page there is also an animated gif, and this gets interrupted when the
> script is activated.. do you have any solution to suggest me?
Some code posting might help, but a guess is you forgot to return false from
the onclick event. Add "return false" at the end of the script and see if
that makes a difference. Usually, a click is the end of a page's life and
the start of another, so browsers tend to stop updating the page once the
click has occured. By returning false, you explicitly tell the browser to
keep the current page and its animations alive.
hth
ivo
[Back to original message]
|