Друзья, подскажите как отследить действия по созданному объекту. Фактически в 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>