Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@RobertCam
Last active November 2, 2017 17:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RobertCam/20582a90ae756514c3483d92676c7889 to your computer and use it in GitHub Desktop.
Save RobertCam/20582a90ae756514c3483d92676c7889 to your computer and use it in GitHub Desktop.
<script>
/*
Unbounce Community :: Tips & Scripts :: Add Tooltips and Rollover Images in Unbounce
TS:0002-04-046
***********************
Do not remove this section. It helps our team track useage of external workarounds.
*/
$(function() {
var trigger = '#lp-pom-button-54'; // Add the ID of the element you'd like to trigger the tooltip
var tt = '#lp-pom-text-55'; // Add the ID of the box displying your tooltip content
$(trigger).hover(function() {
$(tt).fadeIn("slow");
},
function(){
$(tt).fadeOut("slow");
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment