Advertisement
Guest User

Untitled

a guest
Jul 19th, 2020
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(function() {
  2.   $('.remove-btn').click(function(event){
  3.     event.preventDefault();
  4.     $(this).closest(".found-song-block").remove();
  5.  
  6.     if ($(".song-block").length === 0 && $(".found-song-block").length === 0) {
  7.       $(".found-songs-block").remove();
  8.     }
  9.   });
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement