Search Results

0
votes
2answers
795 views

Dojo resize and delete element on animation complete

With a div like this: <div id="im1" class="information_message error">Error message here <a href="javascript:hide('im1')">Hide</a></div> A …
0
votes
2answers
265 views

Firefox, wmode and fscommand

Hello, I'm using SWFObject to embed flash on my site. var so = new SWFObject("file.swf", "file", "100%", "100%", "8", "#FFFFFF"); so.addParam("wmode", "opaque"); so.addParam("allows …
0
votes

Dojo resize and delete element on animation complete

SebaGR, thank you for putting me in the right direction. The padding/margin did indeed have something to say stopping the animation half-ways. I still had problems with text inside the element, and …
1
vote

Firefox, wmode and fscommand

@Theo.T, thanks for the tip. It didn't solve my problem though, but searching around for how to use ExternalInterface led me to a page saying IE wouldn't receive calls from flash when the container …
1
vote

how to position a div in the center and hide it?

Is this what you want? Note the CSS comment. It's important to get the div centered. The "trick" that make the float above the other parts of your site, is position: absolute. …
1
vote

setInterval is not working

If you want the alert to display once, after 5 seconds, use: function chk(){ alert("Welcome"); } setTimeout("chk()", 5000); If you want the alert to appear eve …