-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvisualtagger.html
94 lines (82 loc) · 5.62 KB
/
visualtagger.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<title>Test page for Visual Tagger</title>
<script>
!function(){var analytics=window.analytics=window.analytics||[];if(!analytics.initialize)if(analytics.invoked)window.console&&console.error&&console.error("Segment snippet included twice.");else{analytics.invoked=!0;analytics.methods=["trackSubmit","trackClick","trackLink","trackForm","pageview","identify","reset","group","track","ready","alias","debug","page","once","off","on"];analytics.factory=function(t){return function(){var e=Array.prototype.slice.call(arguments);e.unshift(t);analytics.push(e);return analytics}};for(var t=0;t<analytics.methods.length;t++){var e=analytics.methods[t];analytics[e]=analytics.factory(e)}analytics.load=function(t,e){var n=document.createElement("script");n.type="text/javascript";n.async=!0;n.src="https://cdn.segment.com/analytics.js/v1/"+t+"/analytics.min.js";var a=document.getElementsByTagName("script")[0];a.parentNode.insertBefore(n,a);analytics._loadOptions=e};analytics.SNIPPET_VERSION="4.1.0";
analytics.load("xPRyQU4wbD3mVZs5eRpxhYz07a2lZmG6"); // Javascript 3 Source Write Key
}}();
</script>
</head>
<body>
<section>
<h2>Can Visual Tagger capture events from internal and external links?</h2>
<ul>
<li>
<a href="https://joe-ayoub-segment.github.io/jira_tips_marketo.html">This is an internal link</a>
</li>
<li>
<a href="https://www.google.com">This is an external link</a>
</li>
</ul>
</section>
<section>
<h2>Can Visual Tagger capture events from a form?</h2>
<form accept-charset="UTF-8" method="post" action="https://enbyma4wjxjb9.x.pipedream.net" class="form" id="testform">
<label for="first_name">First Name</label>
<input type="text" name="first_name" id="first_name" value="test" class="text" size="30" maxlength="40" onchange="" onfocus="">
<br/>
<label for="last_name">Last Name</label>
<input type="text" name="last_name" id="504501_63396pi_504501_63396" value="test" class="text" size="30" maxlength="80" onchange="" onfocus="">
<br/>
<label for="work_email">Work Email</label>
<input type="text" name="work_email" id="work_email" value="[email protected]" class="text" size="30" maxlength="255" onfocus="">
<br/>
<label class="field-label" for="company_name">Company Name</label>
<input type="text" name="company_name" id="company_name" value="Test" class="text" size="30" maxlength="255" onchange="" onfocus="">
<br/>
<label for="comments">Comments</label>
<input type="text" name="comments" id="comments">
<br/>
<input type="submit" value="Request a Demo">
</form>
</section>
<section>
<h2>Can Visual Tagger capture events from non link li tags?</h2>
<div class="tab-container">
<span> these li elements are not links, but we need to test if we can trigger Segment events when they are clicked</span>
<ul class="tabs">
<li class="tab-link current" data-tab="tab-1">Sales Sequences</li>
<li class="tab-link" data-tab="tab-2">Multi-Channel Communication</li>
<li class="tab-link" data-tab="tab-3">Personalization</li>
</ul>
</div>
</section>
<section>
<h2>Can Visual Tagger capture events from dropdown lists?</h2>
<select id="filter_drop" name="filter_drop" class="navSelect">
<option value="https://www.outreach.io/customer-stories">All Industries</option>
<option value="https://www.outreach.io/customer-stories/industry/it?section=cards">IT</option>
<option value="https://www.outreach.io/customer-stories/industry/marketing-advertising?section=cards">Marketing/Advertising</option>
<option value="https://www.outreach.io/customer-stories/industry/computer-software?section=cards">Computer Software</option>
<option value="https://www.outreach.io/customer-stories/industry/internet?section=cards">Internet</option>
<option value="https://www.outreach.io/customer-stories/industry/media-entertainment?section=cards">Media & Entertainment</option>
</select>
<select id="filter_drop" name="filter_drop" class="navSelect">
<option value="https://www.outreach.io/customer-stories">All Use Cases</option>
<option value="https://www.outreach.io/customer-stories/use-case/prospecting?section=cards">Prospecting</option>
<option value="https://www.outreach.io/customer-stories/use-case/closing?section=cards">Closing</option>
<option value="https://www.outreach.io/customer-stories/use-case/marketing?section=cards">Marketing</option>
<option value="https://www.outreach.io/customer-stories/use-case/sales-operations?section=cards">Sales Operations</option>
</select>
<select id="filter_drop" name="filter_drop" class="navSelect">
<option value="https://www.outreach.io/customer-stories">All Capabilities</option>
<option value="https://www.outreach.io/customer-stories/product-capability/sequences-task-management-automation?section=cards">Sequences/Task Management/Automation</option>
<option value="https://www.outreach.io/customer-stories/product-capability/meetings?section=cards">Meetings</option>
<option value="https://www.outreach.io/customer-stories/product-capability/onboarding-support-pro-serve?section=cards">Onboarding/Support/Pro-Serve</option>
<option value="https://www.outreach.io/customer-stories/product-capability/amplify?section=cards">Amplify</option>
<option value="https://www.outreach.io/customer-stories/product-capability/reporting-analytics?section=cards">Reporting & Analytics</option>
</select>
</section>
</body>
</html>