Skip to content

Instantly share code, notes, and snippets.

@ezesundayeze
Created April 25, 2017 19:51
Show Gist options
  • Save ezesundayeze/35b9a646fa9439c6bada9d168b8c53cf to your computer and use it in GitHub Desktop.
Save ezesundayeze/35b9a646fa9439c6bada9d168b8c53cf to your computer and use it in GitHub Desktop.
function fetchTask(){
var task = JSON.parse(localStorage.getItem('task'));
//output
var taskResult = document.getElementById('taskResult');
taskResult.innerHTML ="";
for(var i=0; i<task.length; i++){
var name = task[i].name;
var description = task[i].description;
taskResult.innerHTML+='<div class="well"><h3>'+name+' '+description+' </h3>'
'</div>'
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment