title

An optional title for the tag cloud widget. If no title is set, the title bar will not appear.

<div id="tags" />

<script type="text/javascript">
    jQuery(function ($) {
        $("#tags").shieldTagCloud({
            title: "My Tags",
            width: 600,
            height: 400,
            dataSource: {
                data: tagList
            }
        });
    });
</script>