Показать сообщение отдельно
  #1 (permalink)  
Старый 06.06.2017, 16:49
Интересующийся
Отправить личное сообщение для elink12 Посмотреть профиль Найти все сообщения от elink12
 
Регистрация: 08.04.2017
Сообщений: 17

Отслеживание событий плагина
Друзья, подскажите как отследить действия по созданному объекту. Фактически в div создается input и хочется понимать когда в нем происходит событие keyup или focus

<div class="title"></div>

<script>
(function($, window, document) {
    "use strict";

    var pluginName = "test",
        defaults = {
            animation: "Y",
        };
    function Test (element, options, event) {
        this.element = element;
        this._init();
    }
    Test.prototype = {
        _init: function () {
	      $(this.element).addClass('search-user form-control');
	      $(this.element).append('<input type="text"  placeholder="Введите 2 символа" >');
        },
    };
  $.fn.test = function(options,event) {
    this.each(function(){
       return  new Test(this, options, event);
    });
  };


})(jQuery, window, document);

$( document ).ready(function() {
    $(".title").test({animation:"Y"},event);
});

</script>
Ответить с цитированием