Hi all.
I trace event input "input keyup", for that would lead immediately to the screen to filter blocks data which the user entered. But when I try to bring a definitive version of what the user entered (using a click), I'm going through duplication.
Events:
$('#searchPermitted').on('input keyup', function (e) { //... addLiBlocked(); }
Trading on the screen:
addLiBlocked function() { $('.select_lists-choose-blocked').click(function () { $('#select_left ul') .append(''+ $('#searchPermitted').val() + ''); }) }