5-Day Trip Packing List for 19159 in May

9159 in May","categories": [{"n": "Clothing","i": ["5 t-shirts","5 pairs of shorts","5 sets of underwear","5 pairs of socks","1 light jacket","1 pair of comfortable walking shoes","1 pair of flip-flops"]},{"n": "Toiletries","i": ["1 toothbrush and toothpaste","1 shampoo and conditioner","1 body wash","1 sunscreen","1 insect repellent","1 razor and shaving cream","1 deodorant","1 hairbrush or comb"]},{"n": "Electronics","i": ["1 smartphone and charger","1 camera","1 portable power bank","1 travel adapter"]},{"n": "Travel Essentials","i": ["1 passport and travel documents","1 wallet with cash and cards","1 reusable water bottle","1 travel backpack or daypack","1 travel umbrella"]},{"n": "Miscellaneous","i": ["1 sunglasses","1 hat or cap","1 book or e-reader","1 travel guide or map"]}]}'; 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; } ); });