### Displaying Full OSRS Tooltips with HTML Source: https://github.com/osrsbox/osrsbox-tooltips/blob/master/sample/sample.html Demonstrates how to create a full tooltip for an item using the "data-type=\"full\"" attribute in HTML. This displays comprehensive information about the item. ```HTML [Rune platebody (g)] ``` -------------------------------- ### Displaying Short OSRS Tooltips with HTML Source: https://github.com/osrsbox/osrsbox-tooltips/blob/master/sample/sample.html Shows how to create a short tooltip for an item using the "data-type=\"short\"" attribute in HTML. This displays minimal information about the item. ```HTML [Rune full helm (g)] ``` -------------------------------- ### HTML: Display Full OSRS Tooltip Source: https://github.com/osrsbox/osrsbox-tooltips/blob/master/sample/sample_sri.html Demonstrates the syntax for displaying a full tooltip for an OSRS item. This is typically achieved by applying `data-type="full"` to the element containing the item reference, showing comprehensive item details. ```HTML [Rune platebody (g)] ``` -------------------------------- ### Displaying Half OSRS Tooltips with HTML Source: https://github.com/osrsbox/osrsbox-tooltips/blob/master/sample/sample.html Illustrates how to create a half tooltip for an item using the "data-type=\"half\"" attribute in HTML. This displays a condensed version of the item's information. ```HTML [Rune platelegs (g)] ``` -------------------------------- ### Displaying Full OSRS Tooltips on Images with HTML Source: https://github.com/osrsbox/osrsbox-tooltips/blob/master/sample/sample.html Demonstrates how to apply a full tooltip to an image using the "data-type=\"full\"" attribute in HTML. This allows an image to trigger a comprehensive tooltip, likely based on its associated item ID or context. ```HTML ``` -------------------------------- ### Displaying Bonuses OSRS Tooltips with HTML Source: https://github.com/osrsbox/osrsbox-tooltips/blob/master/sample/sample.html Explains how to create a tooltip that specifically shows combat bonuses for an item using the "data-type=\"bonuses\"" attribute in HTML. This is useful for gear comparisons. ```HTML [Rune kiteshield (g)] ``` -------------------------------- ### HTML: Display Half OSRS Tooltip Source: https://github.com/osrsbox/osrsbox-tooltips/blob/master/sample/sample_sri.html Demonstrates the syntax for displaying a half tooltip for an OSRS item. This is typically achieved by applying `data-type="half"` to the element containing the item reference, showing a condensed set of item details. ```HTML [Rune platelegs (g)] ``` -------------------------------- ### HTML: Display Short OSRS Tooltip Source: https://github.com/osrsbox/osrsbox-tooltips/blob/master/sample/sample_sri.html Demonstrates the syntax for displaying a short tooltip for an OSRS item. This is typically achieved by applying `data-type="short"` to the element containing the item reference, showing minimal item details, often just the name. ```HTML [Rune full helm (g)] ``` -------------------------------- ### HTML: Display Full OSRS Tooltip for Image Source: https://github.com/osrsbox/osrsbox-tooltips/blob/master/sample/sample_sri.html Demonstrates the syntax for displaying a full tooltip associated with an OSRS item image. This is typically achieved by applying `data-type="full"` to the element containing the image reference, allowing detailed item information to be linked to an item's icon. ```HTML ![](https://www.osrsbox.com/osrsbox-db/items-icons/3476.png) ``` -------------------------------- ### HTML: Display Bonuses OSRS Tooltip Source: https://github.com/osrsbox/osrsbox-tooltips/blob/master/sample/sample_sri.html Demonstrates the syntax for displaying a tooltip specifically for combat bonuses of an OSRS item. This is typically achieved by applying `data-type="bonuses"` to the element containing the item reference, useful for gear comparisons. ```HTML [Rune kiteshield (g)] ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.