refresh

The refresh() method reloads the current instance of the Tooltip widget.
The optional parameter options gives the possibility to extend the initial options with the new ones.

<div id="container">Hello World!</div>

<script type="text/javascript">
    $(function () {
        var tooltip = $("#container").shieldTooltip({
            content: "Hello world tooltip!"
        }).swidget();
    
        tooltip.refresh();
    });
</script>