I have an element that when hovered over, it displays the price of the item (in a game). I\'m using the jQuery UI tooltip to power the display of the information about each
You can change the content of jQuery Tooltip after initialization as follows:
$( ".selector" ).tooltip( "option", "content", "Awesome title!" );
Here is a demo.
See the API for more details.