jQuery Tooltip Change Options Dynamically

To change any of the widget options dynamically you need to get the initial options, change the desired properties and call the widget refresh(options) method, passing the new values.
This is demonstrated in the code below:

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

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

        var options = tooltip.initialOptions;
        options.autoHide = false;
        tooltip.refresh(options);
    });

</script>