This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="thumb_popout"> | |
<div id="scroll_wrapper"> | |
<div id="thumbnails_wrapper" style="width: 1815px;"> | |
<ul> | |
<li><img src="img/dev/birds1.jpeg"></li> | |
<li><img src="img/dev/birds2.jpeg"></li> | |
<li><img src="img/dev/bridge1.jpeg"></li> | |
<li><img src="img/dev/bridge2.jpeg"></li> | |
</ul> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<head> | |
<title>Example Checkout w/ Google Analytics Tracking</title> | |
</head> | |
<body> | |
<!-- Need this included just once on any page you're selling something. Best to probably globally include it. --> | |
<script type="text/javascript" src="https://www.simplegoods.co/assets/embed.js"></script> | |
<!-- You probably already have jQuery included in your site. Here for completeness --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
var CSSCriticalPath = function(w, d, opts) { | |
var opt = opts || {}; | |
var css = {}; | |
var pushCSS = function(r) { | |
if(!!css[r.selectorText] === false) css[r.selectorText] = {}; | |
var styles = r.style.cssText.split(/;(?![A-Za-z0-9])/); | |
for(var i = 0; i < styles.length; i++) { | |
if(!!styles[i] === false) continue; | |
var pair = styles[i].split(": "); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"referenceId": "130716-19-300", | |
"referrer": "twitter", | |
"price": 5.99, | |
"buyerEmail": "jsmith@example.com", | |
"productName": "Example Product", | |
"purchaseDate": "2016-04-18T15: 20: 28Z", | |
"total": 5.99, | |
"discountCode": "15OFF", | |
"productId": "JUAZYXIU" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE sales (id INT(11) PRIMARY KEY NOT NULL, buyerEmail VARCHAR(40) NOT NULL, purchaseDate DATETIME NOT NULL, price FLOAT NOT NULL, total FLOAT NOT NULL, productName VARCHAR(40) NOT NULL); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[sgbutton link="https://www.simplegoods.co/i/UANKYFXF" text="Buy Now - $4.99"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"purchase_date": "2022-02-20T00:28:43Z", | |
"reference_id": "999999-99-999", | |
"referrer": "simplegoods.co", | |
"customer": { | |
"email": "gob@bluth-development.com", | |
"country": "United States", | |
}, | |
"charge": { | |
"total": "$29.95", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function sendGoalTrackerEmail() { | |
var emailAddress = 'you@you.com'; | |
var subject = 'A Subject Line'; | |
var message = 'Your message'; | |
MailApp.sendEmail(emailAddress, subject, message, { | |
htmlBody: message | |
}); | |
} |