I use the jQuery Tooltip Widget to show tooltips with very large contents. If the content is larger than the size of the tooltip window only the end of the content is shown.
I'm looking for a way to force the tooltip widget to show the beginning of the content (instead of the end of the content)
https://api.jqueryui.com/tooltip/
Example:
.mytooltip {
width: 300px;
border-top: solid 1px #BBBBBB;
border-bottom: solid 1px #444444;
padding: 5px 20px;
border-radius: 0;
box-shadow: 0 0 4px grey;
margin: 2px;
font-stretch: condensed;
white-space: pre-line;
}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery UI Tooltip - Default functionality</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$( function() {
$( document ).tooltip({
tooltipClass: "mytooltip",
});
} );
</script>
</head>
<body>
<p>This is a long website</p>
<p>This is a long website</p>
<p>This is a long website</p>
<p>This is a long website</p>
<p><a href="#" title="Line 1 of long text. 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Long text 
 Last line of long text">Tooltip</a> </p>
</body>
</html>