tags:

views:

917

answers:

5

I need to create a function that will produce a balloon popup in the taskbar using javascript.

Is it possible? Whats the shortest and easiest way to do this?

or else what will be the available method..

Thanks.

+1  A: 

Impossible from a browser. And a good thing.

Will
+1  A: 

eum.. no ?

Wouldn't be cross-platform anyway. Just don't try to do things outside of the browser. Internet explorer can eventually let you, the others not.

Berzemus
+1  A: 

You could probably come pretty close with jGrowl. But you'll have to reset the position to bottom-right (it defaults to top-right).

charlesbridge
+6  A: 

The closest you could get is to make one fixed to the bottom of the viewport of the browser. You could tailor it to appear as though it were part of the windows chrome, but this does tend to annoy users, who don't appreciate attempts to 'fool' them into believing a dialogue/popup/whatever is coming from their OS when it actually isn't.

See: Jeff Atwood on the horrors of fake interfaces

philistyne
+1  A: 

The Yahoo Widget Engine (previously called Konfabulator) allowes to do so; you'll be not in a browser anymore, but in a lightweight web-based desktop application, which probably is rather what you want anyway.

Anybeast from a webpage should never ever leave it's frame/browser.

lImbus