DAY-34

Hi ,reader today it was my day 34 of training at RYAZ.io and toady I have learnt alot :

  • Completed todo list
  • Learnt how to use list item corresponing to edit or delete button clicked
    
    
    {
      for(let i=0;i<variable  .length;i++){
          variable[i].addEventListener('click',function(e){
         document.querySelectorAll('.taskss')[i].removeAttribute('readonly',  'Disable');
         e.target.style.display='none'
         document.querySelectorAll('.save')[i].style.display='inline';
     })
      };
    }
    
  • How to use textcontent.
  • How to use readonly and value attribute in js efficienty

    
      {
           tasks.setAttribute('type','text');
           tasks.setAttribute('readonly','Enable');
      }
    

and many more.Today I have also started another sample project in which I have completed the designing part.In the todo list project I have faced many issues for using queryselectorall as I have used this selector less than other but with this project I got good understanding of queryselectorall and with this my skills also got improved and also I have tried some other my own logic and with this my logic buliding sense also got improved and will this it also helped me with improving with css as I have also explored more new css properties.I have used (e.target) function ehich have helped me in make my work simpler and easier. And will be doing project and Will be learning more in my futher days.