avio
My Todo list
  • Weekly Bigbazar Shopping
  • Pay the electricity bills
  • Contrary to popular belief, Lorem Ipsum is not simply random text
  • Make dinner reservation
  • All the Lorem Ipsum generators on the Internet
  • Many desktop publishing packages and web page editors
$(function() { $('.btn-todo-add').on('click', function() { let item = $('#TodoInput').val(); if (item) { $('.todo-list').append('
  • ' + '' + item + '' + '
    ' + '
  • '); $('input[type="text"]').val('') $('.todo-error').hide(); } else { $('.todo-error').show(); } }); $('.todo-list .close').on('click', function() { toggleClose(this); }); $('.todo-list .done').on('click', function() { toggleDone(this); }); }); function toggleHide() { $('.todo-list li').hide(); } function toggleClose(ele) { $(ele).parent().parent().toggle(); } function toggleDone(ele) { $(ele).parent().parent().toggleClass('active'); }