Показать сообщение отдельно
  #6 (permalink)  
Старый 30.07.2013, 16:04
Аспирант
Отправить личное сообщение для xmlns Посмотреть профиль Найти все сообщения от xmlns
 
Регистрация: 30.07.2013
Сообщений: 47

После долгих мучений плагин родил то, что нужно:
function initialize(method)
        {
            if(methods[method]) {
                return methods[method].apply( this, Array.prototype.slice.call( arguments, 1 ));
            }
            else if(typeof method === 'object' || ! method ) {
                return methods.init.apply(this, arguments);
            }
            else {
                $.error('Метод с именем ' +  method + ' не существует для jQuery.formValidation');
            }
        };
        return this.each(function()
        {
            initialize(options);
        });
Ответить с цитированием