This file contains 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
$(document).ajaxComplete(function() { | |
$("#someElement").html("<p>Requesting heroes!</p>"); //the action | |
}) |
This file contains 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
window.myInterval = setInterval(function() { | |
if ($("some-selector").length > 0) { //looks for a selector | |
/* | |
do something here | |
or add/or in a custom event goal like below: | |
*/ | |
window['optimizely'] = window['optimizely'] || []; | |
$("someselector").bind("mousedown", function() {window.optimizely.push(["trackEvent", "eventName"]); |
This file contains 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
<script> | |
var myip; //declares variable to store IP address | |
var doNotTest = ["012.345.678.9"]; //creates an array to store IPs, separated by a comma, that shouldn't see experiment | |
</script> | |
<script type="text/javascript" src="http://l2.io/ip.js?var=myip"></script> | |
<script> |
This file contains 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
/* | |
The below function was derived from https://github.com/davidji99/isMobile | |
Please visit the link above for further instructions if needed. | |
*/ | |
//paste the follow code into the Satisfy this custom JS condition field in Targeting | |
(function(i){var e=/iPhone/i,n=/iPod/i,o=/iPad/i,t=/(?=.*\bAndroid\b)(?=.*\bMobile\b)/i,r=/Android/i,d=/BlackBerry/i,s=/Opera Mini/i,a=/IEMobile/i,b=/(?=.*\bFirefox\b)(?=.*\bMobile\b)/i,h=RegExp("(?:Nexus 7|BNTV250|Kindle Fire|Silk|GT-P1000)","i"),c=function(i,e){return i.test(e)},l=function(i){var l=i||navigator.userAgent;this.apple={phone:c(e,l),ipod:c(n,l),tablet:c(o,l),device:c(e,l)||c(n,l)||c(o,l)},this.android={phone:c(t,l),tablet:!c(t,l)&&c(r,l),device:c(t,l)||c(r,l)},this.other={blackberry:c(d,l),opera:c(s,l),windows:c(a,l),firefox:c(b,l),device:c(d,l)||c(s,l)||c(a,l)||c(b,l)},this.seven_inch=c(h,l),this.any=this.apple.device||this.android.device||this.other.device||this.seven_inch},v=i.isMobile=new l;v.Class=l})(window); | |
screen.width < 1280 || isMobile.any | |
//end copy |
NewerOlder