position

position - Defines the position of the tooltip element.Its values can be top, bottom, left, right or center.

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

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