"use strict"; $(document).ready(function () { $('#show-todo-items').html(localStorage.getItem('LocalStoragelistItems')); $('.create-items').submit(function (event) { event.preventDefault(); var item = $('#todo-list-item').val(); if (item) { $('#show-todo-items').append("