Eloqua Asynchronous Visitor Tracking Scripts
|
|
|
- Willis Cross
- 10 years ago
- Views:
Transcription
1 Eloqua Asynchronous Visitor Tracking Scripts User Guide 2015 Oracle Corporation. All rights reserved 08/12/2015
2 Contents 1 Eloqua asynchronous tracking scripts 3 2 Basic page view tracking with third-party cookies Basic page view tracking with first-party cookies Retrieving the visitor GUID using a first-party cookie Tracking to multiple Eloqua instances using JavaScript Tracking custom URLs and referrers using JavaScript 8 3 Secure site tracking with first-party cookies 10 4 Using tracking pixels to track page visits 11 5 Outbound link tracking 12 6 Reposting externally hosted forms 13 7 Using data lookups 14 8 Flash content tracking 18 9 Strict Mode Tracking Require opt-in for visitors by country Require opt-in for all visitors Customizing the Opt-in/out banner Opting-in and out Oracle Corporation. All rights reserved 2 of 27
3 1 Eloqua asynchronous tracking scripts The Eloqua asynchronous tracking scripts allow you to track visits to your website seamlessly without affecting the page load time for your visitors. They are supported and tested in all major browsers, including: Internet Explorer 6+ Firefox 1.5+ Opera 9+ Safari 3+ Chrome In order to ensure the highest probability that Eloqua can track the page before the visitor leaves it, the scripts are executed after the entire Document Object Model (DOM) is loaded, but before all content is loaded in all browsers (except IE8 and below). The DOM specifies how the objects in a web page are represented, what attributes are associated with each object, and how the objects and attributes can be manipulated. While the DOM is a standard, different browsers support different levels of the DOM and JavaScript standards. For IE8 and below, the entire page must be loaded before requests to the Eloqua servers are made, they do not support the event that indicates that the DOM has been completely loaded. Visitors are remembered based on a unique cookie value stored in their browser. When you visit a website with the Eloqua asynchronous tracking scripts deployed, cookies are placed in your browser. They help identify you as a website visitor according to your specific browser and computer combination in the event that you return to this domain. Eloqua supports two types of cookie based tracking: third-party and first-party. Third-party cookies The difference between third-party cookies and first-party cookies lies in the owner of the cookie. For example, if you visited company.com, and you saw a cookie for eloqua.com on your browser, this is a third-party cookie because the cookie does not belong to the company.com domain. Popularity of third-party cookies is declining because they are: Deleted regularly by users Blocked by anti-spyware applications Blocked by browsers and default privacy settings 2015 Oracle Corporation. All rights reserved 3 of 27
4 First-party cookies First-party cookies are less problematic to use as they are blocked less often. It is difficult to browse the internet without accepting first-party cookies as these cookies identify you as a returning user to the site and help personalize your browsing experience. This is useful for any website that requires you to login, remember a password and so on. As many anti-spyware applications and privacy settings do not target first-party cookies, implementing tracking based on first-party cookies on your website may allow you to track more visitors successfully. Note: To enable first-party cookie support, please log in to My Oracle Support ( and create a service request Oracle Corporation. All rights reserved 4 of 27
5 2 Basic page view tracking with third-party cookies To add the Eloqua tracking scripts to your site add the following block of code on your pages: <script type="text/javascript"> var _elqq = _elqq []; _elqq.push(['elqsetsiteid', 'site`id']); _elqq.push(['elqtrackpageview']); (function() { function async_load() { var s = document.createelement('script'); s.type = 'text/javascript'; s.async = true; s.src = '//img.en25.com/i/elqcfg.min.js'; var x = document.getelementsbytagname('script')[0]; x.parentnode.insertbefore(s, x); if (window.addeventlistener) window.addeventlistener ('DOMContentLoaded', async_load, false); else if (window.attachevent) window.attachevent('onload', async_load); )(); _elqq is a queue of commands to push to the Eloqua servers. They are queued up and executed in order, once the scripts have been loaded into the DOM. Note: The snippet above can be placed anywhere on the page. Since the scripts are executed asynchronously, it does not matter where they are placed on the page. However, if you plan to use other features like data look ups or opt-out pages, you must ensure _elqq is defined before it is used. 2.1 Basic page view tracking with first-party cookies Note: To enable first-party cookie support, please log in to My Oracle Support ( and create a service request. For domains configured to support first-party cookies, it is possible to drop a first-party cookie on the visitor's browser. If an existing eloqua.com third-party cookie already exists, its GUID is used for the first-party cookie. This is helpful in scenarios where the third-party cookie has previously been used to link the visitor to a known contact in Eloqua. Using the same GUID allows the first party cookie to 2015 Oracle Corporation. All rights reserved 5 of 27
6 maintain the link between the visitor and the contact and keep all their digital body language in tact. If no third-party cookie exists, a first-party cookie with a unique GUID is dropped on the visitor's browser. Support for Strict Mode tracking using first-party cookies has been introduced with the following exception: Script Mode opt-in/opt-out preferences cannot be set using the Form Processing step. The following options were implemented as of the Winter '14 release and continue to be supported: Eloqua-hosted Landing Pages. Branded and non-branded domains. Secure websites (accessed via tracking.mysite.com should be the same as the first-party cookie domain in your configuration. Also mysite.com should have the same root domain on which your webpages are hosted. If your tracking script references //img.en25.com for the location of the hosted JavaScript file, the only modification you must make to the script is the line below substituting tracking.mysite.com with the first-party cookie tracking domain in your configuration: <script type="text/javascript"> var _elqq = _elqq []; _elqq.push(['elqsetsiteid', 'siteid']); _elqq.push(['elqusefirstpartycookie', 'tracking.mysite.com']); _elqq.push(['elqtrackpageview']); (function() { function async_load() { var s = document.createelement('script'); s.type = 'text/javascript'; s.async = true; s.src = '//img.en25.com/i/elqcfg.min.js'; var x = document.getelementsbytagname('script')[0]; x.parentnode.insertbefore(s, x); if(window.addeventlistener) window.addeventlistener ('DOMContentLoaded', async_load, false); else if (window.attachevent) window.attachevent('onload', async_load); )(); _elqq is a queue of commands to push to our servers. They are queued up and executed in order, once the scripts have been loaded into the DOM Oracle Corporation. All rights reserved 6 of 27
7 Note: The snippet above can be placed anywhere on the page. Since the scripts are executed asynchronously, it does not matter where they are placed on the page. However, if you plan to use other features like data look ups or opt-out pages, you must ensure _elqq is defined before it is used Retrieving the visitor GUID using a first-party cookie The following code snippet returns the visitor GUID: function elqgetguidcookievalue() { var name, value, index, cookies=document.cookie.split(';'); for (var i = 0; i < cookies.length; i++) { index = cookies[i].indexof('='); if (index > 0 && cookies[i].length > index + 1) { name = cookies[i].substr(0, index).trim(); if (name == 'ELOQUA') { value = cookies[i].substr(index + 1); var subcookies = value.split("&"); for (var l = 0; 1 < subcookies.length; l++) { var subcookie = subcookies[l].split("="); if (subcookie.length == 2 && subcookie[0] == 'GUID') { return subcookie[1]; return ''; 2.2 Tracking to multiple Eloqua instances using JavaScript Eloqua's asynchronous tracking scripts allow you to track to more than one instance of Eloqua if you have a business need for doing so. Configuring that is as simple as calling elqtrackpageview twice after setting the different siteids. Here's an example: <script type="text/javascript"> var _elqq = _elqq []; _elqq.push(['elqsetsiteid', '123']); 2015 Oracle Corporation. All rights reserved 7 of 27
8 _elqq.push(['elqtrackpageview']); _elqq.push(['elqsetsiteid', '456']); _elqq.push(['elqtrackpageview']); (function() { function async_load() { var s = document.createelement('script'); s.type = 'text/javascript'; s.async = true; s.src = '//img.en25.com/i/elqcfg.min.js'; var x = document.getelementsbytagname('script')[0]; x.parentnode.insertbefore(s, x); if(window.addeventlistener) window.addeventlistener ('DOMContentLoaded', async_load, false); else if (window.attachevent) window.attachevent('onload', async_load); )(); The highlighted lines show the two extra commands needed to make the extra call to the Eloqua servers to track a second instance. 2.3 Tracking custom URLs and referrers using JavaScript By default, Eloqua's asynchronous tracking scripts use the current request URL and referrer that the browser passes along to the Eloqua servers. This works well in the majority of cases, but there are times you may want to customize the URL and/or referrer being passed to Eloqua's servers to get more value from the system. One classic example is if you have a site that dynamically generates unique URLs that you want to only track as one resource for reporting purposes. To override the URL, simply call the elqtrackpageview function with a single parameter, the URL you want to track. For example: <script type="text/javascript"> var _elqq = _elqq []; _elqq.push(['elqsetsiteid', '123']); _elqq.push(['elqtrackpageview', ' (function() { function async_load() { var s = document.createelement('script'); s.type = 'text/javascript'; s.async = true; 2015 Oracle Corporation. All rights reserved 8 of 27
9 s.src = '//img.en25.com/i/elqcfg.min.js'; var x = document.getelementsbytagname('script')[0]; x.parentnode.insertbefore(s, x); if (window.addeventlistener) window.addeventlistener ('DOMContentLoaded', async_load, false); else if (window.attachevent) window.attachevent('onload', async_load); )(); If you would also like to override the referrer as well, adding a second parameter to elqtrackpageview() allows you to do this: <script type="text/javascript"> var _elqq = _elqq []; _elqq.push(['elqsetsiteid', '123']); _elqq.push(['elqtrackpageview', ' ' (function() { function async_load() { var s = document.createelement('script'); s.type = 'text/javascript'; s.async = true; s.src = '//img.en25.com/i/elqcfg.min.js'; var x = document.getelementsbytagname('script')[0]; x.parentnode.insertbefore(s, x); if (window.addeventlistener) window.addeventlistener ('DOMContentLoaded', async_load, false); else if (window.attachevent) window.attachevent('onload', async_load); )(); 2015 Oracle Corporation. All rights reserved 9 of 27
10 3 Secure site tracking with first-party cookies Note: To enable first-party cookie support, please log in to My Oracle Support ( and create a service request. Additional configuration is required to deploy first-party cookies over secure sites. The tracking domain needs to be configured as a secure microsite in Eloqua that has an SSL certificate applied to it. If this tracking domain is used in the tracking scripts, when a first-party cookie is dropped, the browser will not display any warning messages regarding mixed content and successfully drop a first-party cookie. Note: You may need to work with your organization's IT department in order to set up a tracking domain for first-party cookies to be enabled. Please contact Oracle Eloqua Product Support for further information. The following block of code will need to be added to your tracking scripts. Substitute tracking.mysite.com with the first-party cookie tracking domain in your configuration: <script type="text/javascript"> var _elqq = _elqq []; _elqq.push(['elqsetsiteid', '2610']); _elqq.push(['elqtrackpageview']); _elqq.push(['elqusefirstpartycookie', 'tracking.mysite.com']); (function () { function async_load() { var s = document.createelement('script'); s.type = 'text/javascript'; s.async = true; s.src = '//img.en25.com/i/elqcfg.min.js'; var x = document.getelementsbytagname('script')[0]; x.parentnode.insertbefore(s, x); if (window.addeventlistener) window.addeventlistener ('DOMContentLoaded', async_load, false); else if (window.attachevent) window.attachevent('onload', async_ load); )(); 2015 Oracle Corporation. All rights reserved 10 of 27
11 4 Using tracking pixels to track page visits A tracking pixel is a 1x1-sized pixel image that can be embedded within your landing pages to track page visits. The tracking pixel image is an image tag that points to an endpoint on the Eloqua servers and accepts the ELQ parameter (unique recipient id). When the image is loaded, the endpoint records the page visit against the recipient ID (which can be resolved to a contact for reporting.) The HTML snippet looks similar to this: <img style="display:none; border: 0" src=" 1.t.eloqua.com/visitor/v200/svrGP?pps=3&siteid= 1&ref= width="1" height="1" alt=""> In the example above, 1 where highlighted, represents your site id Oracle Corporation. All rights reserved 11 of 27
12 5 Outbound link tracking Outbound link tracking allows you to track when users click specific links on your site. The links may be to other sites or to a different location within your site. The links could be for web pages or they could point to documents like PDFs or Word documents. To accomplish outbound link tracking, you will have to modify your current anchor tags by adding an onclick handler. For example, a link that currently looks like this: <a href=" Should be modified to look like this: <a href=" onclick="_elq.trackoutboundlink(this);return false;"></a> If the above use case isn't valid for your situation, a more generic JavaScript function is exposed for this purpose: _elq.trackevent (' Note: The trackevent function above will track that the user has clicked on the particular document or URL, but it won't actually redirect the user. You may need to use this functionality if you have a more complicated workflow, but the first method, using trackoutboundlink, is the preferred method Oracle Corporation. All rights reserved 12 of 27
13 6 Reposting externally hosted forms Use these scripts when the form data is reposted to Eloqua servers from a server-side form processor. In this case it is not possible to get the cookie from the client's browser, so the following scripts should be installed on the form page to send the unique ID along with the form data. In addition to the regular Eloqua form elements: <input type="hidden" name="elqformname" value="eloquaformname" /> <input type="hidden" name="elqsiteid" value="siteid" /> Add the following two hidden fields to your form: <input type="hidden" name="elqcustomerguid" value=""> <input type="hidden" name="elqcookiewrite" value="0"> Then, place the following code anywhere after the main tracking scripts appear on the page: var timerid = null, timeout = 5; function WaitUntilCustomerGUIDIsRetrieved() { if (!!(timerid)) { if (timeout == 0) { return; if(typeof this.getelqcustomerguid === 'function') { document.forms["eloquaformname"].elements ["elqcustomerguid"].value = GetElqCustomerGUID(); return; timeout -= 1; timerid = settimeout("waituntilcustomerguidisretrieved()", 500); return; window.onload = WaitUntilCustomerGUIDIsRetrieved; _elqq.push(['elqgetcustomerguid']); This code will execute upon the page loading and will wait until the visitor's GUID has been retrieved from the Eloqua servers and then insert it into the elqcustomerguid form element. Ensure to replace EloquaFormName with the actual name of your form as setup in Eloqua Oracle Corporation. All rights reserved 13 of 27
14 7 Using data lookups Data lookups allow you to get information about a visitor, contact, data card, etc. to do things like autopopulate forms, allow entry to a portion of your site to known contacts, and/or contacts who have already filled out a form, and so on. To accomplish a data lookup, you will need the following: 1. Create a new data lookup key from within Eloqua. 2. Add the basic tracking scripts to your page. Assuming you have completed steps 1 and 2 and have your Data Lookup key and optional Data Lookup value ready, here's an example of how to retrieve that information. For illustration purposes, we're going to create a simple div, and have it populated with some contact details by the scripts. The first step is to add a div to our page in the main content section and give it an id of "contactinfo": <div id="contactinfo"> </div> Next, we need some JavaScript that will dynamically create some paragraph elements for us: function CreateRow(label, value) { var p = document.createelement('p'); var b = document.createelement('b'); p.appendchild(b); b.appendchild(document.createtextnode(label)); p.appendchild(document.createtextnode(value)); document.getelementbyid('contactinfo').appendchild(p); Next, we add a function called SetElqContent. This is the callback function that is called when the Eloqua servers have responded and sent back the contact info. The function name is important and must be called SetElqContent. function SetElqContent() { CreateRow('Contact Info: ', GetElqContentPersonalizationValue ('')); CreateRow('First Name: ', GetElqContentPersonalizationValue('C_ FirstName')); CreateRow('Last Name: ', GetElqContentPersonalizationValue('C_ LastName')); CreateRow(' Address: ',GetElqContentPersonalizationValue('C_ Address')); 2015 Oracle Corporation. All rights reserved 14 of 27
15 CreateRow('Salesperson: ', GetElqContentPersonalizationValue('C_ Salesperson')); CreateRow('Company: ', GetElqContentPersonalizationValue('C_ Company')); CreateRow('Address 1: ', GetElqContentPersonalizationValue('C_ Address1')); CreateRow('City: ', GetElqContentPersonalizationValue('C_City')); CreateRow('State or Province: ',GetElqContentPersonalizationValue ('C_State_Prov')); CreateRow('Zip or Postal Code: ',GetElqContentPersonalizationValue ('C_Zip_Postal')); CreateRow('Business Phone: ', GetElqContentPersonalizationValue('C_ BusPhone')); CreateRow('Country: ', GetElqContentPersonalizationValue('C_ Country')); CreateRow('Company Info: ', GetElqContentPersonalizationValue('')); CreateRow('Checkbox: ', GetElqContentPersonalizationValue('M_ CompanyName')); CreateRow('Industry: ', GetElqContentPersonalizationValue('M_ Industry1')); CreateRow('Revenue: ', GetElqContentPersonalizationValue('M_ Revenue1')); CreateRow('WebSite: ', GetElqContentPersonalizationValue('M_ WebSite1')); CreateRow('Date Created: ',GetElqContentPersonalizationValue('M_ DateCreated')); Finally, we add the actual command to our queue that requests the contact info from the Eloqua servers. This is where you will need to insert the Data Lookup key and value: _elqq.push(['elqdatalookup', escape('datalookupkey'), 'DataLookupValue']); DataLookupKey will be a GUID that looks similar to this: 434C5E6250C04FCBB0D4FC5413F9A40A. The DataLookupValue (if required) will look something like this: <C_ Address>[email protected]</C_ Address> The Eloqua application will give you both of these values. Trying it all together, we get the following: <html> <head> <script type="text/javascript"> var _elqq = _elqq []; 2015 Oracle Corporation. All rights reserved 15 of 27
16 _elqq.push(['elqsetsiteid', '123']); _elqq.push(['elqtrackpageview']); (function () { function async_load() { var s = document.createelement('script'); s.type = 'text/javascript'; s.async = true; s.src = '//img.en25.com/i/elqcfg.min.js'; var x = document.getelementsbytagname('script')[0]; x.parentnode.insertbefore(s, x); if (window.attachevent) { window.attachevent('onload', async_load); else { window.addeventlistener('domcontentloaded', async_ load, false); )(); <script type="text/javascript"> function CreateRow(label, value) { var p = document.createelement('p'); var b = document.createelement('b'); var label = document.createtextnode(label); var value = document.createtextnode(value); p.appendchild(b); b.appendchild(label); p.appendchild(value); document.getelementbyid('contactinfo').appendchild(p); function SetElqContent() { CreateRow('Contact Info: ', GetElqContentPersonalizationValue('')); CreateRow('First Name: ', GetElqContentPersonalizationValue('C_FirstName')); CreateRow('Last Name: ', GetElqContentPersonalizationValue ('C_LastName')); CreateRow(' Address: ', GetElqContentPersonalizationValue('C_ Address')); CreateRow('Salesperson: ', GetElqContentPersonalizationValue('C_Salesperson')); CreateRow('Company: ', GetElqContentPersonalizationValue ('C_Company')); CreateRow('Address 1: ', GetElqContentPersonalizationValue ('C_Address1')); CreateRow('City: ', GetElqContentPersonalizationValue('C_ City')); CreateRow('State or Province: ', GetElqContentPersonalizationValue('C_State_Prov')); 2015 Oracle Corporation. All rights reserved 16 of 27
17 CreateRow('Zip or Postal Code: ', GetElqContentPersonalizationValue('C_Zip_Postal')); CreateRow('Business Phone: ', GetElqContentPersonalizationValue('C_BusPhone')); CreateRow('Country: ', GetElqContentPersonalizationValue ('C_Country')); CreateRow('Company Info: ', GetElqContentPersonalizationValue('')); CreateRow('Checkbox: ', GetElqContentPersonalizationValue ('M_CompanyName')); CreateRow('Industry: ', GetElqContentPersonalizationValue ('M_Industry1')); CreateRow('Revenue: ', GetElqContentPersonalizationValue ('M_Revenue1')); CreateRow('WebSite: ', GetElqContentPersonalizationValue ('M_WebSite1')); CreateRow('Date Created: ', GetElqContentPersonalizationValue('M_DateCreated')); _elqq.push(['elqdatalookup', escape ('434C5E6250C04FCBB0D4FC5413F9A40A'), ' </head> <body> <div id="contactinfo"> </div> </body> </html> 2015 Oracle Corporation. All rights reserved 17 of 27
18 8 Flash content tracking Tracking clicks in Flash content is easily achievable with the Eloqua asynchronous tracking scripts. The package you receive from Eloqua should have a Flash sample in it to help you out. The method used in that sample is outlined below: Supposing you had a button in your flash content you want to track, in your click handler, you would add the following code (replacing the parameter values with your own): ActionScript 2: on (release) { // your button click handling code elqtrackflashclick(' ' ActionScript 3: import flash.external.externalinterface; button_1.addeventlistener(mouseevent.click, fl_mouseclickhandler); function fl_mouseclickhandler(event: MouseEvent): void { // your button click handling code ExternalInterface.call("elqTrackFlashClick (' ' where "button_1" is the name of your button. On your page that hosts the flash object, add the elqtrackflashclick JavaScript function in the head section below the standard tracking scripts: <script type='text/javascript'> function elqtrackflashclick(url, referrer) { _elqq.push(['elqtrackpageview', URL, referrer]); Putting it all together, your page hosting the flash content might look like this: <html> <head> 2015 Oracle Corporation. All rights reserved 18 of 27
19 <script type="text/javascript"> var _elqq = _elqq []; _elqq.push(['elqsetsiteid', '<siteid>']); _elqq.push(['elqtrackpageview']); (function() { function async_load() { var s = document.createelement('script'); s.type = 'text/javascript'; s.async = true; s.src = '//img.en25.com/i/elqcfg.min.js'; var x = document.getelementsbytagname('script')[0]; x.parentnode.insertbefore(s, x); if (window.addeventlistener) window.addeventlistener ('DOMContentLoaded', async_load, false); else if (window.attachevent) window.attachevent('onload', async_load); )(); function elqtrackflashclick(url, referrer) { _elqq.push(['elqtrackpageview', URL, referrer]); </head> <body> <div id="flashcontent"> <object classid="clsid:d27cdb6e-ae6d-11cf-96b " width="550" height="400" id="flashexample" align="middle"> <param name="movie" value="flashexample.swf" /> <param name="quality" value="high" /> <param name="bgcolor" value="#ffffff" /> <param name="play" value="true" /> <param name="loop" value="true" /> <param name="wmode" value="window" /> <param name="scale" value="showall" /> <param name="menu" value="true" /> <param name="devicefont" value="false" /> <param name="salign" value="" /> <param name="allowscriptaccess" value="samedomain" /> <!--[if!ie]>--> <object type="application/x-shockwave-flash" data="flashexample.swf" width="550" height="400"> <param name="movie" value="flashexample.swf" /> <param name="quality" value="high" /> <param name="bgcolor" value="#ffffff" /> <param name="play" value="true" /> 2015 Oracle Corporation. All rights reserved 19 of 27
20 <param name="loop" value="true" /> <param name="wmode" value="window" /> <param name="scale" value="showall" /> <param name="menu" value="true" /> <param name="devicefont" value="false" /> <param name="salign" value="" /> <param name="allowscriptaccess" value="samedomain" /> <!--<![endif]--> <a href=" <img src=" download_buttons/get_flash_player.gif" alt="get Adobe Flash player" /> </a> <!--[if!ie]>--> </object> <!--<![endif]--> </object> </div> </body> </html> 2015 Oracle Corporation. All rights reserved 20 of 27
21 9 Strict Mode Tracking Eloqua's asynchronous tracking scripts allow you to implement Strict Mode Tracking. Eloqua's Strict Mode is a set of tools that enables you to restrict visitor tracking according to laws enacted by European Union member countries that have specified this requirement. Eloqua provides you with the following three levels for configuring the tracking scripts: 1. Track all visitors; 2. Track all visitors except for those from countries on my Restricted Country List, unless those visitors have opted into tracking (Require Opt-in for visitors by Country); or 3. Don't track any visitors unless those visitors have opted-into tracking (Require Opt-in for all Visitors). Note: Strict Mode Tracking must be enabled to use these scripts. Contact Eloqua Product Support for more information. It is your responsibility to determine which function you want to call from each of your web pages. Important: If Strict Mode is enabled but you do not select any countries for your Restricted Country List, Eloqua will not track any visitors to pages that call the Require Opt-in for visitors by Country function. In this case we are assuming that you neglected to add countries to the list and have decided not to track anyone until you add at least one country to the list. At that time, we will then only restrict tracking to those countries you've added to the list. This also affects tracking redirect links in the same way (i.e. links from s and Landing Pages). 9.1 Require opt-in for visitors by country The following allows you to track visitors from countries that are not on the Country by IP restriction list and track visitors from restricted countries that have opted into tracking: <script type="text/javascript"> var _elqq = _elqq []; _elqq.push(['elqsetsiteid', 'siteid']); _elqq.push(['elqtrackpageviewoptinbycountry']); (function() { function async_load() { var s = document.createelement('script'); s.type = 'text/javascript'; 2015 Oracle Corporation. All rights reserved 21 of 27
22 s.async = true; s.src = '//img.en25.com/i/elqcfg.min.js'; var x = document.getelementsbytagname('script')[0]; x.parentnode.insertbefore(s, x); if(window.addeventlistener) window.addeventlistener ('DOMContentLoaded', async_load, false); else if (window.attachevent) window.attachevent('onload', async_load); )(); The following code does the same thing as the above snippet, except that it shows a simple default opt-in/out banner at the top of the page to new visitors coming from restricted countries. For visitors who have opted-into tracking, the banner will not be displayed and page views will be tracked: <script type="text/javascript"> var _elqq = _elqq []; _elqq.push(['elqsetsiteid', 'siteid']); _elqq.push(['elqtrackpageviewdisplayoptinbannerbycountry']); (function () { function async_load() { var s = document.createelement('script'); s.type = 'text/javascript'; s.async = true; s.src = '//img.en25.com/i/elqcfg.min.js'; var x = document.getelementsbytagname('script')[0]; x.parentnode.insertbefore(s, x); if (window.addeventlistener) window.addeventlistener ('DOMContentLoaded', async_load, false); else if (window.attachevent) window.attachevent('onload', async_ load); )(); function elqvisitortrackingoptin() { _elqq.push(['elqoptin']); function elqvisitortrackingoptout() { _elqq.push(['elqoptout']); The styling and text of the Opt-in banner can be customized Oracle Corporation. All rights reserved 22 of 27
23 9.2 Require opt-in for all visitors The following allows you to exclude all visitors from tracking unless they have explicitly opted into tracking: <script type="text/javascript"> var _elqq = _elqq []; _elqq.push(['elqsetsiteid', 'siteid']); _elqq.push(['elqtrackpageviewoptinall']); (function () { function async_load() { var s = document.createelement('script'); s.type = 'text/javascript'; s.async = true; s.src = '//img.en25.com/i/elqcfg.min.js'; var x = document.getelementsbytagname('script')[0]; x.parentnode.insertbefore(s, x); if (window.addeventlistener) window.addeventlistener ('DOMContentLoaded', async_load, false); else if (window.attachevent) window.attachevent('onload', async_ load); )(); The following code does the same thing as the above snippet, except that it shows a simple default opt-in banner at the top of the page to new visitors. For visitors who have opted-in to tracking, the banner will not be displayed and page views will be tracked: <script type="text/javascript"> var _elqq = _elqq []; _elqq.push(['elqsetsiteid', 'siteid']); _elqq.push(['elqtrackpageviewdisplayoptinbannerforall']); (function () { function async_load() { var s = document.createelement('script'); s.type = 'text/javascript'; s.async = true; s.src = '//img.en25.com/i/elqcfg.min.js'; var x = document.getelementsbytagname('script')[0]; x.parentnode.insertbefore(s, x); if (window.addeventlistener) window.addeventlistener ('DOMContentLoaded', async_load, false); else if (window.attachevent) window.attachevent('onload', async_ 2015 Oracle Corporation. All rights reserved 23 of 27
24 load); )(); function elqvisitortrackingoptin() { _elqq.push(['elqoptin']); function elqvisitortrackingoptout() { _elqq.push(['elqoptout']); The styling and text of the Opt-in banner can be customized Oracle Corporation. All rights reserved 24 of 27
25 10 Customizing the Opt-in/out banner You can create your own banner rather than using the built-in default. For example: <script type="text/javascript"> function elqcreateoptinbanner() { if (navigator.appversion.indexof('msie')!= -1) { var css = '.elqoptinbanner {position: absolute; top: 0px; left: 0px; width: 100%; border:solid 1px #c0c0c0; backgroundcolor:#e1e1e1; font-size:11px; font-family:verdana; color:#000; padding:5px;.elqoptinbannertext {float: left; text-align:left; width:96%;.elqbutton {fontsize:11px; color:#000; padding:3px;.elqclose {float:right; font-size:14px; fontweight:bold; cursor:pointer; padding-right:15px; '; else { var css = '.elqoptinbanner {position: fixed; top: 0px; left: 0px; width: 100%; border:solid 1px #c0c0c0; backgroundcolor:#e1e1e1; font-size:11px; font-family:verdana; color:#000; padding:5px;.elqoptinbannertext {float: left; text-align:left; width:96%;.elqbutton {fontsize:11px; color:#000; padding:3px;.elqclose {float:right; font-size:14px; fontweight:bold; cursor:pointer; padding-right:15px; '; var style = document.createelement('style'); style.type = 'text/css'; if (style.stylesheet) { style.stylesheet.csstext = css; else { style.appendchild(document.createtextnode(css)); var head = document.getelementsbytagname('head')[0]; head.appendchild(style); var div = document.createelement('div'); div.setattribute('id', 'elqoptinbannerdiv'); div.classname = 'elqoptinbanner'; div.innerhtml = '<div class="elqoptinbannertext" > This website would like to use cookies to store information on your computer which will help to customize your interactions with us and provide you with a better browsing experience. You may delete and block cookies from this site, but parts of the 2015 Oracle Corporation. All rights reserved 25 of 27
26 site may not function as a result. More information about cookies and your choices can be found in our Privacy Policy. To accept cookies from this site, please click the \'I Accept\' button below. <input type="button" id="elqoptinbutton" value="i Accept" onclick="elqvisitortrackingoptin(); document.getelementbyid(\'elqoptinbannerdiv\').style.display = \'none\';" class="elqbutton" /> <input type="button" id="elqoptoutbutton" value="i Decline" onclick="elqvisitortrackingoptout();document.getelementbyid (\'elqoptinbannerdiv\').style.display = \'none\';" class="elqbutton" /></div><div class="elqclose" onclick="document.getelementbyid (\'elqoptinbannerdiv\').style.display = \'none\';">x</div>'; document.body.appendchild(div); Note: The function name cannot be changed. The tracking scripts code will call elqcreateoptinbanner Oracle Corporation. All rights reserved 26 of 27
27 11 Opting-in and out The Eloqua tracking scripts allow users to opt-out of tracking at the site level as well as globally for all domains. Opting-out at the site level involves creating a new cookie called ELQOPTOUT and setting a value to indicate that for this particular site, the visitor should not be tracked in the Eloqua system. The user's GUID is not removed and so if they later choose to opt back in, they will resume tracking against the same visitor record. Opting-out at the global level removes their GUID from the cookie and thus makes them invisible to our servers. If they opt back in, they will get a new GUID and will be tracked as a new visitor. Note: The opt-in/opt-outs for first and third-party cookie tracking are independent of each other. For example, if a site is using first-party cookie tracking and a site visitor has both a first-party cookie opt-in and a third-party cookie opt-out, only the first-party cookie opt-in will be used and the visitor will be tracked. This is an edge case that is relevant primarily when you are transitioning a domain from third-party to first-party cookie tracking as part of the beta program and a single visitor has both a third and a first party cookie. The following code snippet returns visitor opt-in status for first-party cookie tracking. It returns 1 if the visitor is opted in and 0 if the visitor is opted out. If the visitor is neither opted in nor opted out, an empty string is returned. function elqgetoptincookievalue() { var name, index, cookies = document.cookie.split(';'); for (var i = 0; i < cookies.length; i++) { index = cookies[i].indexof('='); if (index > 0 && cookies[i].length > index + 1) { name = cookies[i].substr(0, index).trim(); if (name == 'OPTIN') { return cookies[i].substr(index + 1); return ''; 2015 Oracle Corporation. All rights reserved 27 of 27
Tagging Guide: Website and Email Implementation. Contents
Tagging Guide: Website and Email Implementation Contents About This Guide... 2 Your CiteID... 2 Website Implementation... 2 Tag Placement... 2 Example... 3 Email Implementation... 5 DNS Setup... 5 Tag
Portals and Hosted Files
12 Portals and Hosted Files This chapter introduces Progress Rollbase Portals, portal pages, portal visitors setup and management, portal access control and login/authentication and recommended guidelines
Oracle Eloqua HIPAA Advanced Data Security Add-on Cloud Service
http://docs.oracle.com Oracle Eloqua HIPAA Advanced Data Security Add-on Cloud Service Configuration Guide 2015 Oracle Corporation. All rights reserved 05/11/2015 Contents 1 HIPAA 3 1.0.1 What is HIPAA?
Tableau Server Trusted Authentication
Tableau Server Trusted Authentication When you embed Tableau Server views into webpages, everyone who visits the page must be a licensed user on Tableau Server. When users visit the page they will be prompted
MASTERTAG DEVELOPER GUIDE
MASTERTAG DEVELOPER GUIDE TABLE OF CONTENTS 1 Introduction... 4 1.1 What is the zanox MasterTag?... 4 1.2 What is the zanox page type?... 4 2 Create a MasterTag application in the zanox Application Store...
New Online Banking Guide for FIRST time Login
New Online Banking Guide for FIRST time Login Step 1: Login Enter your existing Online Banking User ID and Password. Click Log-In. Step 2: Accepting terms and Conditions to Proceed Click on See the terms
Login and Pay with Amazon Integration Guide
Login and Pay with Amazon Integration Guide 2 2 Contents...4 Introduction...5 Important prerequisites...5 How does Login and Pay with Amazon work?... 5 Key concepts...5 Overview of the buyer experience...
Instructions for Configuring Your Browser Settings and Online Security FAQ s. ios8 Settings for iphone and ipad app
Instructions for Configuring Your Browser Settings and Online Security FAQ s ios8 Settings for iphone and ipad app General Settings The following browser settings and plug-ins are required to properly
WIX - Really Flashy Websites For Free
The Wix homepage claims we can make free websites in Flash, and we can do it by using their editing tools totally for free this sounds too good to be true : Their website is at: http://www.wix.com/ (But
Google AdWords TM Conversion Tracking Guide
Google AdWords TM Conversion Tracking Guide CONTENTS INTRODUCTION TO CONVERSION TRACKING...2 PRODUCT DESCRIPTION...2 OVERVIEW...2 DEFINITION OF TERMS...3 ADDING THE CODE SNIPPET...4 CONVERSION TRACKING
Pay with Amazon Integration Guide
2 2 Contents... 4 Introduction to Pay with Amazon... 5 Before you start - Important Information... 5 Important Advanced Payment APIs prerequisites... 5 How does Pay with Amazon work?...6 Key concepts in
Login and Pay with Amazon Automatic Payments Integration Guide
Login and Pay with Amazon Automatic Payments Integration Guide 2 2 Contents... 4 Introduction...5 Important prerequisites...5 How does Login and Pay with Amazon work?... 5 Key concepts...6 Overview of
We automatically generate the HTML for this as seen below. Provide the above components for the teaser.txt file.
Creative Specs Gmail Sponsored Promotions Overview The GSP creative asset will be a ZIP folder, containing four components: 1. Teaser text file 2. Teaser logo image 3. HTML file with the fully expanded
Reference Guide for WebCDM Application 2013 CEICData. All rights reserved.
Reference Guide for WebCDM Application 2013 CEICData. All rights reserved. Version 1.2 Created On February 5, 2007 Last Modified August 27, 2013 Table of Contents 1 SUPPORTED BROWSERS... 3 1.1 INTERNET
WP Popup Magic User Guide
WP Popup Magic User Guide Plugin version 2.6+ Prepared by Scott Bernadot WP Popup Magic User Guide Page 1 Introduction Thank you so much for your purchase! We're excited to present you with the most magical
Getting Started Guide
Getting Started Guide Table of Contents OggChat Overview... 3 Getting Started Basic Setup... 3 Dashboard... 4 Creating an Operator... 5 Connecting OggChat to your Google Account... 6 Creating a Chat Widget...
Standard Checkout. Button Creation Wizard Implementation Guide. U.S. Version 2014-01-13
Standard Checkout Button Creation Wizard Implementation Guide U.S. Version 2014-01-13 Introduction 2 TOC 3 Contents List of Tables... 5 List of Figures... 7 Overview of Checkout by Amazon...9 Who Should
Force.com Sites Implementation Guide
Force.com Sites Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: October 16, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark
Joomla! template JSN Mico Customization Manual
Joomla! template JSN Mico Customization Manual (for JSN Mico 1.0.x) www.facebook.com/joomlashine www.twitter.com/joomlashine www.youtube.com/joomlashine This documentation is release under Creative Commons
Adaptive Business Management Systems Privacy Policy
Adaptive Business Management Systems Privacy Policy Updated policy: Effective on July 01, 2013 This privacy statement describes how Adaptive Business Management Systems collects and uses the personal information
WP Popup Magic User Guide
WP Popup Magic User Guide Introduction Thank you so much for your purchase! We're excited to present you with the most magical popup solution for WordPress! If you have any questions, please email us at
How we use cookies on our website
How we use cookies on our website We use cookies on our site to improve performance and enhance your user experience. This policy explains how cookies work. What are cookies? Cookies are small text files
Fax User Guide 07/31/2014 USER GUIDE
Fax User Guide 07/31/2014 USER GUIDE Contents: Access Fusion Fax Service 3 Search Tab 3 View Tab 5 To E-mail From View Page 5 Send Tab 7 Recipient Info Section 7 Attachments Section 7 Preview Fax Section
css href title software blog domain HTML div style address img h2 tag maintainingwebpages browser technology login network multimedia font-family
technology software href browser communication public login address img links social network HTML div style font-family url media h2 tag handbook: id domain TextEdit blog title PORT JERVIS CENTRAL SCHOOL
Website Login Integration
SSO Widget Website Login Integration October 2015 Table of Contents Introduction... 3 Getting Started... 5 Creating your Login Form... 5 Full code for the example (including CSS and JavaScript):... 7 2
Online sales management software Quick store setup. v 1.1.3
Online sales management software Quick store setup v 1.1.3 Table of Contents 1Shopizer urls...3 2Configure your store...3 Store and profile...4 Store Front Configuration...4 3Integration...6 4Configure
css href title software blog domain HTML div style address img h2 tag maintainingwebpages browser technology login network multimedia font-family
technology software href browser communication public login address img links social network HTML div style font-family url media h2 tag handbook: id domain TextEdit blog title CANAJOHARIE CENTRAL SCHOOL
ADOBE FLASH PLAYER Local Settings Manager
ADOBE FLASH PLAYER Local Settings Manager Legal notices Legal notices For legal notices, see http://help.adobe.com/en_us/legalnotices/index.html. iii Contents Storage...............................................................................................................
Vector HelpDesk - Administrator s Guide
Vector HelpDesk - Administrator s Guide Vector HelpDesk - Administrator s Guide Configuring and Maintaining Vector HelpDesk version 5.6 Vector HelpDesk - Administrator s Guide Copyright Vector Networks
ConvincingMail.com Email Marketing Solution Manual. Contents
1 ConvincingMail.com Email Marketing Solution Manual Contents Overview 3 Welcome to ConvincingMail World 3 System Requirements 3 Server Requirements 3 Client Requirements 3 Edition differences 3 Which
Tracking E-mail Campaigns with G-Lock Analytics
User Guide Tracking E-mail Campaigns with G-Lock Analytics Copyright 2009 G-Lock Software. All Rights Reserved. Table of Contents Introduction... 3 Creating User Account on G-Lock Analytics. 4 Downloading
OPENTABLE GROUP SEARCH MODULE GETTING STARTED ADD RESERVATIONS TO YOUR WEBSITE
ADD RESERVATIONS TO YOUR WEBSITE OPENTABLE GROUP SEARCH MODULE The group search module allows users to select a specific restaurant location from a list and search tables at that location. The code below
SelectSurvey.NET User Manual
SelectSurvey.NET User Manual Creating Surveys 2 Designing Surveys 2 Templates 3 Libraries 4 Item Types 4 Scored Surveys 5 Page Conditions 5 Piping Answers 6 Previewing Surveys 7 Managing Surveys 7 Survey
This document is for informational purposes only. PowerMapper Software makes no warranties, express or implied in this document.
SortSite 5 User Manual SortSite 5 User Manual... 1 Overview... 2 Introduction to SortSite... 2 How SortSite Works... 2 Checkpoints... 3 Errors... 3 Spell Checker... 3 Accessibility... 3 Browser Compatibility...
Installation & Configuration Guide Professional Edition
Installation & Configuration Guide Professional Edition Version 2.3 Updated January 2014 Table of Contents Getting Started... 3 Introduction... 3 Requirements... 3 Support... 4 Recommended Browsers...
Salesforce Customer Portal Implementation Guide
Salesforce Customer Portal Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered
How to Edit Your Website
How to Edit Your Website A guide to using your Content Management System Overview 2 Accessing the CMS 2 Choosing Your Language 2 Resetting Your Password 3 Sites 4 Favorites 4 Pages 5 Creating Pages 5 Managing
http://alice.teaparty.wonderland.com:23054/dormouse/bio.htm
Client/Server paradigm As we know, the World Wide Web is accessed thru the use of a Web Browser, more technically known as a Web Client. 1 A Web Client makes requests of a Web Server 2, which is software
DocuSign for Salesforce Administrator Guide v6.1.1 Rev A Published: July 16, 2015
DocuSign for Salesforce Administrator Guide v6.1.1 Rev A Published: July 16, 2015 Copyright Copyright 2003-2015 DocuSign, Inc. All rights reserved. For information about DocuSign trademarks, copyrights
Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation
Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation Credit-By-Assessment (CBA) Competency List Written Assessment Competency List Introduction to the Internet
Embedding a Data View dynamic report into an existing web-page
Embedding a Data View dynamic report into an existing web-page Author: GeoWise User Support Released: 23/11/2011 Version: 6.4.4 Embedding a Data View dynamic report into an existing web-page Table of Contents
How To Write A Cq5 Authoring Manual On An Ubuntu Cq 5.2.2 (Windows) (Windows 5) (Mac) (Apple) (Amd) (Powerbook) (Html) (Web) (Font
Adobe CQ5 Authoring Basics Print Manual SFU s Content Management System SFU IT Services CMS Team ABSTRACT A summary of CQ5 Authoring Basics including: Setup and Login, CQ Interface Tour, Versioning, Uploading
Sizmek Formats. Collage. Build Guide
Formats Collage Build Guide Table Of Contents Overview... 3 Supported Platforms... 3 Specifications... 3 Known Issues... 3 Ad Behavior Screenshots... 4 Template Included Files... 8 Setting up in Workshop...
Kaltura Extension for SharePoint User Manual. Version: Eagle
Kaltura Extension for SharePoint User Manual Version: Eagle Kaltura Business Headquarters 200 Park Avenue South, New York, NY. 10003, USA Tel.: +1 800 871 5224 Copyright 2012 Kaltura Inc. All Rights Reserved.
Quick Start Guide. Installation and Setup
Quick Start Guide Installation and Setup Introduction Velaro s live help and survey management system provides an exciting new way to engage your customers and website visitors. While adding any new technology
Virto Pivot View for Microsoft SharePoint Release 4.2.1. User and Installation Guide
Virto Pivot View for Microsoft SharePoint Release 4.2.1 User and Installation Guide 2 Table of Contents SYSTEM/DEVELOPER REQUIREMENTS... 4 OPERATING SYSTEM... 4 SERVER... 4 BROWSER... 4 INSTALLATION AND
Nanacast.com Membership Wizard. and offer setup Manual
Membership Wizard and offer setup Manual Though not required we recommend setting up just about every offer in Nanacast using the Membership Wizard. To find out why and what the benefits are please watch
Overview. How It Works
Overview Email is a great way to communicate with your alumni and donors. It s agile, it can be interactive, and it has lower overhead than print mail. Our constituents are also becoming more and more
UH CMS Basics. Cascade CMS Basics Class. UH CMS Basics Updated: June,2011! Page 1
UH CMS Basics Cascade CMS Basics Class UH CMS Basics Updated: June,2011! Page 1 Introduction I. What is a CMS?! A CMS or Content Management System is a web based piece of software used to create web content,
DocuSign Signing Resource File Information
DocuSign Information Guide DocuSign Signing Resource File Information Overview This guide provides information about the settings, text of messages, dialog boxes and error messages contained in the Account
Using the VMRC Plug-In: Startup, Invoking Methods, and Shutdown on page 4
Technical Note Using the VMRC API vcloud Director 1.5 With VMware vcloud Director, you can give users the ability to access virtual machine console functions from your web-based user interface. vcloud
The Smart Forms Web Part allows you to quickly add new forms to SharePoint pages, here s how:
User Manual First of all, congratulations on being a person of high standards and fine tastes! The Kintivo Forms web part is loaded with features which provide you with a super easy to use, yet very powerful
How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip
Load testing with WAPT: Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. A brief insight is provided
Nintex Forms 2013 Help
Nintex Forms 2013 Help Last updated: Friday, April 17, 2015 1 Administration and Configuration 1.1 Licensing settings 1.2 Activating Nintex Forms 1.3 Web Application activation settings 1.4 Manage device
DEPLOYMENT GUIDE Version 1.1. Deploying the BIG-IP LTM v10 with Citrix Presentation Server 4.5
DEPLOYMENT GUIDE Version 1.1 Deploying the BIG-IP LTM v10 with Citrix Presentation Server 4.5 Table of Contents Table of Contents Deploying the BIG-IP system v10 with Citrix Presentation Server Prerequisites
IBM Unica emessage Version 8 Release 6 February 13, 2015. User's Guide
IBM Unica emessage Version 8 Release 6 February 13, 2015 User's Guide Note Before using this information and the product it supports, read the information in Notices on page 403. This edition applies to
1. User Guide... 2 2. API overview... 4 2.1 addon - xml Definition... 4 2.1.1 addon.background... 5 2.1.1.1 addon.background.script... 5 2.1.
User Guide............................................................................................. 2 API overview...........................................................................................
WebCUR ListServ. ListServ Help Manual
WebCUR ListServ ListServ Help Manual WebCUR-ListServ Help Manual Table of Contents System Overview... 2 Getting Started... 2 Send A List Message... 4 Send A Web Page... 5 Send A List Invitation... 6 Manage
Requirements for Developing WebWorks Help
WebWorks Help 5.0 Originally introduced in 1998, WebWorks Help is an output format that allows online Help to be delivered on multiple platforms and browsers, which makes it easy to publish information
Web Portal User Guide. Version 6.0
Web Portal User Guide Version 6.0 2013 Pitney Bowes Software Inc. All rights reserved. This document may contain confidential and proprietary information belonging to Pitney Bowes Inc. and/or its subsidiaries
IP Office one-x Portal for IP Office User Guide
one-x Portal for User Guide 15-601131 Issue 02d - (29 April 2010) 2010 AVAYA All Rights Reserved. Notice While reasonable efforts were made to ensure that the information in this document was complete
Checklist of Best Practices in Website
Checklist of Best Practices in Website An educational guide for anyone responsible for website performance and search engine optimization. Specialists in Direct & Digital Marketing Checklist of Best Practices
User Guide for Smart Former Gold (v. 1.0) by IToris Inc. team
User Guide for Smart Former Gold (v. 1.0) by IToris Inc. team Contents Offshore Web Development Company CONTENTS... 2 INTRODUCTION... 3 SMART FORMER GOLD IS PROVIDED FOR JOOMLA 1.5.X NATIVE LINE... 3 SUPPORTED
Recommended Browser Setting for MySBU Portal
The MySBU portal is built using Microsoft s SharePoint technology framework, therefore, for the best viewing experience, Southwest Baptist University recommends the use of Microsoft s Internet Explorer,
Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY
Advanced Web Development Duration: 6 Months SCOPE OF WEB DEVELOPMENT INDUSTRY Web development jobs have taken thе hot seat when it comes to career opportunities and positions as a Web developer, as every
Introduction to web development and JavaScript
Objectives Chapter 1 Introduction to web development and JavaScript Applied Load a web page from the Internet or an intranet into a web browser. View the source code for a web page in a web browser. Knowledge
JTouch Mobile Extension for Joomla! User Guide
JTouch Mobile Extension for Joomla! User Guide A Mobilization Plugin & Touch Friendly Template for Joomla! 2.5 Author: Huy Nguyen Co- Author: John Nguyen ABSTRACT The JTouch Mobile extension was developed
Login with Amazon. Getting Started Guide for Websites. Version 1.0
Login with Amazon Getting Started Guide for Websites Version 1.0 Login with Amazon: Getting Started Guide for Websites Copyright 2016 Amazon Services, LLC or its affiliates. All rights reserved. Amazon
If you have any questions about our privacy practices, please refer to the end of this privacy policy for information on how to contact us.
c4m Privacy Policy Last Modified: July 20, 2015 Colbette II Ltd., Block 1, 195-197 Old Nicosia-Limassol Road, Dali Industrial Zone, Cyprus 2540 (hereinafter "c4m", Colbette we", "our" or "us") is always
Set Up and Maintain Customer Support Tools
Set Up and Maintain Customer Support Tools Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered
Your Blueprint websites Content Management System (CMS).
Your Blueprint websites Content Management System (CMS). Your Blueprint website comes with its own content management system (CMS) so that you can make your site your own. It is simple to use and allows
Secure Messaging Server Console... 2
Secure Messaging Server Console... 2 Upgrading your PEN Server Console:... 2 Server Console Installation Guide... 2 Prerequisites:... 2 General preparation:... 2 Installing the Server Console... 2 Activating
Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence
Web Development Owen Sacco ICS2205/ICS2230 Web Intelligence Introduction Client-Side scripting involves using programming technologies to build web pages and applications that are run on the client (i.e.
Infor Xtreme Browser References
Infor Xtreme Browser References This document describes the list of supported browsers, browser recommendations and known issues. Contents Infor Xtreme Browser References... 1 Browsers Supported... 2 Browser
5. At the Windows Component panel, select the Internet Information Services (IIS) checkbox, and then hit Next.
Installing IIS on Windows XP 1. Start 2. Go to Control Panel 3. Go to Add or RemovePrograms 4. Go to Add/Remove Windows Components 5. At the Windows Component panel, select the Internet Information Services
Improving Magento Front-End Performance
Improving Magento Front-End Performance If your Magento website consistently loads in less than two seconds, congratulations! You already have a high-performing site. But if your site is like the vast
Protected PDF Common Installation Issues
Protected PDF Common Installation Issues July 14, 2011 Version 1.1 TABLE OF CONTENTS Basic Instructions for Readers ------------------------------------------------------------------------- 2 Common Questions
WHAT INFORMATION IS COLLECTED AT MOTOROLA.COM.VN AND/OR MOTOROLA.VN AND HOW IS IT PROCESSED AND USED?
MOTOROLA PRIVACY POLICY This Privacy Statement ( Policy ) is subject to change at Motorola s discretion. If we decide to change this Policy, we will post the amended Policy on this website so you will
MSOW. MSO for the Web MSONet Workstation Configuration Guide
MSOW MSO for the Web MSONet Workstation Configuration Guide For personal and public computer users accessing MSOW Practitioner Home Page (PHP) and Primary Source Verification (PSV) Updated June 4, 2013
Ad Banner Manager 6.0 User Manual
Introduction...5 Installation and configuration...5 Upgrading from Version 5.1 or Earlier...6 Changes in Behavior...7 What is New Since 5.1?...7 Overview...8 Creating Advertisers and Campaigns Typical
Ciphermail Gateway PDF Encryption Setup Guide
CIPHERMAIL EMAIL ENCRYPTION Ciphermail Gateway PDF Encryption Setup Guide March 6, 2014, Rev: 5454 Copyright c 2008-2014, ciphermail.com. CONTENTS CONTENTS Contents 1 Introduction 4 2 Portal 4 3 PDF encryption
Jim2 ebusiness Framework Installation Notes
Jim2 ebusiness Framework Installation Notes Summary These notes provide details on installing the Happen Business Jim2 ebusiness Framework. This includes ebusiness Service and emeter Reads. Jim2 ebusiness
NBA Math Hoops Privacy Statement and Children s Privacy Statement Updated October 17, 2013.
NBA Math Hoops Privacy Statement and Children s Privacy Statement Updated October 17, 2013. This Privacy Statement applies to the web sites mobile applications provided by Learn Fresh Education Co. (collectively,
Front-End Performance Testing and Optimization
Front-End Performance Testing and Optimization Abstract Today, web user turnaround starts from more than 3 seconds of response time. This demands performance optimization on all application levels. Client
Web Page Redirect. Application Note
Web Page Redirect Application Note Table of Contents Background... 3 Description... 3 Benefits... 3 Theory of Operation... 4 Internal Login/Splash... 4 External... 5 Configuration... 5 Web Page Redirect
Project 2: Web Security Pitfalls
EECS 388 September 19, 2014 Intro to Computer Security Project 2: Web Security Pitfalls Project 2: Web Security Pitfalls This project is due on Thursday, October 9 at 6 p.m. and counts for 8% of your course
Talk Internet User Guides Controlgate Administrative User Guide
Talk Internet User Guides Controlgate Administrative User Guide Contents Contents (This Page) 2 Accessing the Controlgate Interface 3 Adding a new domain 4 Setup Website Hosting 5 Setup FTP Users 6 Setup
Setup and Administration for ISVs
17 Setup and Administration for ISVs ISV accounts for both hosted and private cloud support white labeling functionality and give you the ability to provision and manage customer tenants directly. A customer
Frequently Asked Questions Ag Banking Online
Table of Contents Note: To quickly navigate to the answer, click on the question. What is Multi-Factor Authentication (MFA) and its purpose?... 2 This is my first time accessing the online application.
SysPatrol - Server Security Monitor
SysPatrol Server Security Monitor User Manual Version 2.2 Sep 2013 www.flexense.com www.syspatrol.com 1 Product Overview SysPatrol is a server security monitoring solution allowing one to monitor one or
