jQuery: Popup like MSN Messenger
Do you k开发者_Python百科now a popup in jQuery which work like the popup of MSN Messenger? I want to display a message at the botton right of the page for example.
Thank you very much
Here's something I came up with using jQuery UI Dialog.
Markup:
<div id="dialog" title="New Message!" >Hi, How are you?</div>
<button type="button">Check Messages</button>
jQuery:
$("#dialog").dialog({
height: 120,
width: 10,
draggable: false,
position: ['right', 'bottom'],
autoOpen: false,
show: {
effect: 'slide',
direction: 'up',
duration: 300
}
});
$(':button').click(function() {
$('#dialog').dialog("close").dialog('open');
});
Customary jsFiddle demo link.
try jQuery Easy Confirm Dialog plugin
精彩评论