destroy

The destroy() method destroys the instance of the Tooltip widget.

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

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