views:

40

answers:

2

This one site in particular Total Training Online

has a popup window that drops from the top of the screen on the right side. How can I create that in asp.net c# 2008?

A: 

I don't see that effect on the page you linked to, or a link that says anything about "chat with live agent".

Regardless, I would start by trying to find a jQuery plugin that gets the desired effect. Just hit up google, practically everything under the sun has a free jQuery plugin now.

Brian MacKay
+2  A: 

Here's a jquery plugin that allows you to achieve this effect very easily:

$(function() {
    $('#someFloatingDivId').makeFloat({ x: 'current', y: 'current' });
});
Darin Dimitrov
wow. Very cool. Thanks for the link. Will try it out.
user279521