开发者

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

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜