
├── .DS_Store ├── .prettierignore ├── Ecommerce └── ecommerce.js ├── Forms ├── forms.html ├── forms.js └── utm.js ├── README.md ├── analytics └── analytics.html ├── cms-image.jpg ├── cms ├── cms.html └── cms.js ├── codepen.io_rileyrichter-the-encoder_full_BaYgmEq (5).png ├── css ├── basics.css └── css.js ├── filtering └── filter.js ├── finsweet └── finsweet-filters.js ├── glider.css ├── glider.js ├── jason-llewellyn.jpeg ├── jayden-rowe.jpeg ├── js ├── countdown.js ├── jqueryget.js ├── old-write.html ├── this.json ├── typewriter.js ├── write-items-part-two.html ├── write-items.html └── write-items.js ├── loading-attribute-polyfill.min.js ├── lsep.js ├── memberstack ├── like.html ├── like.js ├── memberstack.html └── memberstack.js ├── no-code └── no-code.js ├── owl ├── init.js ├── owl.carousel.min.css ├── owl.carousel.min.js └── owl.theme.default.css ├── prism ├── prism.css └── prism.js ├── record-vector.svg ├── rob-cursor.png ├── smiling1.jpg ├── smiling1.mp4 ├── smiling2.mp4 ├── snippet.html ├── sunset.jpg ├── swiper-bundle.min.js.map ├── swiper.css ├── swiper.js ├── test └── webflow.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileyrichter/snippets/84d137585592f3b8f53945fd30340c02bbca30ba/.DS_Store -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | swiper-bundle.min.js.map -------------------------------------------------------------------------------- /Ecommerce/ecommerce.js: -------------------------------------------------------------------------------- 1 | // Get the total of an order on the checkout page 2 | setTimeout(function () { 3 | let myTotal = document.querySelector( 4 | ".w-commerce-commercecheckoutsummarytotal" 5 | ).textContent; 6 | console.log(myTotal); 7 | localStorage.setItem("Total", myTotal); 8 | }, 1000); 9 | -------------------------------------------------------------------------------- /Forms/forms.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 20 | 21 | 22 |
12 | This code comes from the sandbox in 13 | Memberstack's API Docs 14 |
15 | Uncomment methods inindex.js