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" >
2010-10-26 15:07:22 +00:00
< title > jQuery UI Tooltip - Default demo< / title >
2011-05-29 16:29:11 +00:00
< link rel = "stylesheet" href = "../../themes/base/jquery.ui.all.css" >
< script src = "../../jquery-1.5.1.js" > < / script >
< script src = "../../ui/jquery.ui.core.js" > < / script >
< script src = "../../ui/jquery.ui.widget.js" > < / script >
< script src = "../../ui/jquery.ui.position.js" > < / script >
< script src = "../../ui/jquery.ui.tooltip.js" > < / script >
< link rel = "stylesheet" href = "../demos.css" >
< style >
.photo {
width: 300px;
text-align: center;
}
.photo .ui-widget-header {
margin: 1em 0;
}
< / style >
< script >
2010-10-26 15:07:22 +00:00
$(function() {
2011-05-29 16:29:11 +00:00
$( ".demo" ).tooltip({
items: "img, [data-geo], [title]",
content: function() {
var element = $( this );
if ( element.is( "[data-geo]" ) ) {
return $( "< iframe > ", {
width: 425,
height: 350,
frameborder: 0,
scrolling: "no",
marginheight: 0,
marginwidth: 0,
src: "http://maps.google.com/maps?ll=" + element.attr( "data-geo" ) +
"& z=11& t=p& output=embed"
});
}
if ( element.is( "[title]" ) ) {
return $( this ).attr( "title" );
}
if ( element.is( "img" ) ) {
return $( this ).attr( "alt" );
2010-10-26 15:07:22 +00:00
}
}
});
});
< / script >
< / head >
< body >
< div class = "demo" >
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 >
< h3 > < a href = "http://maps.google.com/maps?q=vienna,+austria&z=11" data-geo = "48.208174,16.373819" > Vienna, Austria< / a > .< / h3 >
< / div >
< a href = "http://en.wikipedia.org/wiki/File:Wien_Stefansdom_DSC02656.JPG" >
< img src = "images/st-stephens.jpg" alt = "St. Stephen's Cathedral" >
< / a >
< / div >
< div class = "ui-widget photo" >
< div class = "ui-widget-header ui-corner-all" >
< h2 > Tower Bridge< / h2 >
< h3 > < a href = "http://maps.google.com/maps?q=london,+england&z=11" data-geo = "51.500152,-0.126236" > London, England< / a > .< / h3 >
2010-10-26 15:07:22 +00:00
< / div >
2011-05-29 16:29:11 +00:00
< a href = "http://en.wikipedia.org/wiki/File:Tower_bridge_London_Twilight_-_November_2006.jpg" >
< img src = "images/tower-bridge.jpg" alt = "Tower Bridge" >
< / a >
< / div >
< p > All images are part of < a href = "http://commons.wikimedia.org/wiki/Main_Page" > Wikimedia Commons< / a >
and are licensed under < a href = "http://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 >
2010-10-26 15:07:22 +00:00
< / div > <!-- End demo -->
< div class = "demo-description" >
< p > Show how to combine different event delegated tooltips into a single instance, by customizing the items and content options.< / p >
< / div > <!-- End demo - description -->
< / body >
< / html >