Created
July 14, 2017 09:40
-
-
Save hristiank/5b9c3d5db6a260d8eb58de41e186702f to your computer and use it in GitHub Desktop.
Unbounce Box Links
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
<style> | |
.lp-pom-box { | |
cursor: pointer; | |
} | |
</style> |
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
// Set the script placement to be "Before Body End Tag"// | |
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script> | |
<script> | |
var urls = { | |
'lp-pom-box-9': 'https://www.google.com', | |
'lp-pom-box-10': 'https://www.yahoo.com', | |
'lp-pom-box-11': 'https://www.unbounce.com' | |
} | |
$('.lp-pom-box').on('click', function() { | |
var id = $(this).attr('id'); | |
window.location.href = urls[id]; | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment