Packing List for 5-Day Trip to 1 in May

in May","categories": [{"n": "Clothing","i": ["5 shirts - mix of short and long sleeves","2 pairs of pants/jeans","1 pair of shorts","5 sets of underwear and socks","1 light jacket or sweater","1 pair of comfortable walking shoes","1 pair of sandals","1 swimsuit","1 sun hat"]},{"n": "Toiletries","i": ["Travel-sized shampoo and conditioner","Toothbrush and toothpaste","Deodorant","Sunscreen","Insect repellent","Personal medications","Travel-sized first aid kit"]},{"n": "Electronics","i": ["Smartphone and charger","Camera or GoPro and charger","Power bank","Adapters if traveling internationally"]},{"n": "Travel Essentials","i": ["Passport and travel documents","Travel-sized umbrella","Sunglasses","Reusable water bottle","Travel backpack or day bag"]},{"n": "Miscellaneous","i": ["Portable travel laundry detergent","Travel pillow","Travel-sized sewing kit","Travel guidebooks and maps"]}]}'; var version = '2'; var hashtag = 'packinglist'; socialMessage = 'Check out this amazing ' + pageWord + ' #plantrip #' + hashtag; socialUrl = 'https://plantrip.io/' + type + '/' + id; // on document ready jquery $(document).ready(function() { $(".share-page-buttons").show(); }); if (type == "packing-list") { if (version != 2) { // simply put the content into the container $("#list-container").html(content); } else { Handlebars.registerHelper("formatDate", function(dateString) { if (dateString == null) return ""; return " / " + moment(dateString).format("dddd, D MMMM"); }); var html = getFormattedPackingList(content); $("#list-container").html(html); } } $(document).on("click", "#save-packing-list-to-trips", function() { // post to /api/saveToTrips $.post( "/api/saveToTrips", { mode: "packingList", id: id, userAuthToken: userAuthToken, }, function(data) { // parse the raw json string into a javascript object data = JSON.parse(data); window.location.href = data.redirect; } ); });