wijmo.tooltip.wijtooltip Namespace > options type : title Option |
Default value: ""
Specifies a value that sets the tooltip's title.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: string returnsValue = $(".selector").wijtooltip("option", "title"); // Set value var newValue; // Type: string $(".selector").wijtooltip("option", "title", newValue); }); |
Javascript (Specification) | |
---|---|
|
//Set tooltip's title to "my title". $(".selector").wijtooltip("option", "title", "my title");