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?
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?
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.
Here's a jquery plugin that allows you to achieve this effect very easily:
$(function() {
$('#someFloatingDivId').makeFloat({ x: 'current', y: 'current' });
});