Posts

Showing posts with the label tooltip

When chatGPT Doesn't Deliver (how to add a tooltip to a link on a blogspot post)

How do you add a wikipedia style tooltip to a link in a blogger blog post? From the oracle : To add a Wikipedia-style tooltip to a link in a Blogger blog post, you can use a JavaScript library called "Opentip". Here are the steps to do it: First, you need to add the Opentip JavaScript library to your Blogger blog. You can do this by adding the following code to the HTML of your blog template, just before the </head> tag: html Copy code < script src = "https://cdnjs.cloudflare.com/ajax/libs/opentip/2.4.6/opentip-native.min.js" > </ script > < link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/opentip/2.4.6/opentip-native.min.css" > Next, you need to add a class to the links that you want to add the tooltip to. You can do this by adding the following code to the HTML of your blog post: html Copy code < a href = "#" class = "tooltip" data-ot = "Tooltip text" > Li...