2010-10-26 15:07:22 +00:00
<!doctype html>
< html lang = "en" >
< head >
2011-05-29 16:29:11 +00:00
< meta charset = "utf-8" >
2015-09-30 13:11:22 +00:00
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
2011-05-30 23:07:40 +00:00
< title > jQuery UI Tooltip - Custom content< / title >
2013-12-02 18:36:12 +00:00
< link rel = "stylesheet" href = "../../themes/base/all.css" >
2011-05-29 16:29:11 +00:00
< link rel = "stylesheet" href = "../demos.css" >
< style >
.photo {
width: 300px;
text-align: center;
}
.photo .ui-widget-header {
margin: 1em 0;
}
2011-05-30 23:07:40 +00:00
.map {
width: 350px;
height: 350px;
}
2012-11-05 18:05:58 +00:00
.ui-tooltip {
max-width: 350px;
}
2011-05-29 16:29:11 +00:00
< / style >
2015-07-01 03:46:05 +00:00
< script src = "../../external/requirejs/require.js" > < / script >
< script src = "../bootstrap.js" >
2012-09-10 15:33:46 +00:00
$( document ).tooltip({
2011-05-29 16:29:11 +00:00
items: "img, [data-geo], [title]",
content: function() {
var element = $( this );
if ( element.is( "[data-geo]" ) ) {
2012-05-09 20:14:34 +00:00
var text = element.text();
return "< img class = 'map' alt = '" + text +
2024-04-25 21:53:11 +00:00
"' src='https://maps.google.com/maps/api/staticmap?" +
2011-05-30 19:55:41 +00:00
"zoom=11& size=350x350& maptype=terrain& sensor=false& center=" +
2012-05-09 20:14:34 +00:00
text + "'>";
2011-05-29 16:29:11 +00:00
}
if ( element.is( "[title]" ) ) {
2011-05-29 17:50:53 +00:00
return element.attr( "title" );
2011-05-29 16:29:11 +00:00
}
if ( element.is( "img" ) ) {
2011-05-29 17:50:53 +00:00
return element.attr( "alt" );
2010-10-26 15:07:22 +00:00
}
}
});
< / script >
< / head >
< body >
2011-05-29 16:29:11 +00:00
< div class = "ui-widget photo" >
< div class = "ui-widget-header ui-corner-all" >
< h2 > St. Stephen's Cathedral< / h2 >
2024-04-25 21:53:11 +00:00
< h3 > < a href = "https://maps.google.com/maps?q=vienna,+austria&z=11" data-geo > Vienna, Austria< / a > < / h3 >
2011-05-29 16:29:11 +00:00
< / div >
2024-04-25 21:53:11 +00:00
< a href = "https://en.wikipedia.org/wiki/File:Wien_Stefansdom_DSC02656.JPG" >
2011-05-29 17:50:53 +00:00
< img src = "images/st-stephens.jpg" alt = "St. Stephen's Cathedral" class = "ui-corner-all" >
2011-05-29 16:29:11 +00:00
< / a >
< / div >
< div class = "ui-widget photo" >
< div class = "ui-widget-header ui-corner-all" >
< h2 > Tower Bridge< / h2 >
2024-04-25 21:53:11 +00:00
< h3 > < a href = "https://maps.google.com/maps?q=london,+england&z=11" data-geo > London, England< / a > < / h3 >
2010-10-26 15:07:22 +00:00
< / div >
2024-04-25 21:53:11 +00:00
< a href = "https://en.wikipedia.org/wiki/File:Tower_bridge_London_Twilight_-_November_2006.jpg" >
2011-05-29 17:50:53 +00:00
< img src = "images/tower-bridge.jpg" alt = "Tower Bridge" class = "ui-corner-all" >
2011-05-29 16:29:11 +00:00
< / a >
< / div >
2024-04-25 21:53:11 +00:00
< p > All images are part of < a href = "https://commons.wikimedia.org/wiki/Main_Page" > Wikimedia Commons< / a >
and are licensed under < a href = "https://creativecommons.org/licenses/by-sa/3.0/deed.en" title = "Creative Commons Attribution-ShareAlike 3.0" > CC BY-SA 3.0< / a > by the copyright holder.< / p >
2011-05-29 16:29:11 +00:00
2010-10-26 15:07:22 +00:00
< div class = "demo-description" >
2011-05-29 16:31:06 +00:00
< p > Shows how to combine different event delegated tooltips into a single instance, by customizing the items and content options.< / p >
2014-04-24 13:23:45 +00:00
< p > For interactive content, such as scrollable maps, use a dialog.< / p >
2012-09-10 15:33:46 +00:00
< / div >
2010-10-26 15:07:22 +00:00
< / body >
< / html >