Показать сообщение отдельно
  #2 (permalink)  
Старый 03.02.2016, 15:24
Профессор
Отправить личное сообщение для Mess4me Посмотреть профиль Найти все сообщения от Mess4me
 
Регистрация: 03.11.2014
Сообщений: 263

hhh,
аргумент не туда передаете options
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>

    <script>

        (function ($) {

            $.fn.colorFoo = function (options) {
                return this.each(function () {

                    var settings = $.extend({
                        bordColor : 'green'
                    },options||{});

                    $(this).css('color', settings.bordColor);

                });
            }

        })(jQuery);

        $(function () {
            $('.color').colorFoo({
                bordColor: 'red'
            });
        });

    </script>

</head>
<body>
<p class="color">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nulla, fugit.</p>
</body>
</html>
Ответить с цитированием