From: Scott A. L. <sc...@sc...> - 2000-11-22 01:43:17
|
Hi Joaquin, When you use "javascript:" in a hyperlink, animated GIFs will freeze when you click the link. The only workaround I know is to use onclick instead: Bad: <a href="javascript:myFunction();" ...></a> Good: <a href="#" onClick="myFunction(); return false;" ...></a> -- scott andrew lepera ----------------------------------- web stuff: www.scottandrew.com music stuff: www.walkingbirds.com |