Показать сообщение отдельно
  #4 (permalink)  
Старый 11.03.2012, 07:56
что-то знаю
Отправить личное сообщение для devote Посмотреть профиль Найти все сообщения от devote
 
Регистрация: 24.05.2009
Сообщений: 5,176

<!DOCTYPE html>
<html>
    <head>
        <script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
        <script type="text/javascript">

(function($){
    $.fn.mbar = function(options) {
        var options = $.extend({
            drag:   true,
            title:  'Панель сообщений',
            mtime:  true
        }, options);

        return this.each(function() {
 
            var block = $(this);
 
            var dragHtml = '';
            if(options.drag) {
                dragHtml = '<div class="drag"></div>';
            }
            block.append(
                '<div class="header">' +
                    '<div class="title">' + options.title + '</div>' +
                    dragHtml +
                '</div>' +
                '<div class="messages" />' +
                '<div class="status" />'
            );
        });
    }
})(jQuery);

        </script>

<script type="text/javascript">
    $(document).ready(function(){
        $('.mbar').mbar();
    });
</script>

    </head>
    <body>
        <div class="mbar"></div>
    </body>
</html>
__________________
хм Russians say завтра but завтра doesn't mean "tomorrow" it just means "not today."
HTML5 history API рассширение для браузеров не поддерживающих pushState, replaceState
QSA CSS3 Selector Engine
Ответить с цитированием