Guest User

Untitled

a guest
Apr 25th, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. $('#searchPermitted').on('input keyup', function (e) {
  2. //...
  3. addLiBlocked();
  4. }
  5.  
  6. function addLiBlocked() {
  7. $('.select_lists-choose-blocked').click(function () {
  8.  
  9. $('#select_left ul')
  10. .append('<li>' + $('#searchPermitted').val() + '</li>');
  11. })
  12. }
Add Comment
Please, Sign In to add comment