dataSource

dataSource - Specifies a dicrionary containing DataSource settings or an instance of a DataSource object.


<div id="menu1"></div>

<script type="text/javascript">

    $(function () {
        $("#menu1").shieldMenu({
            dataSource: {
                 data: [
                    {
                        content: "Item One"
                    },
                    {
                        content: "Item Two"
                    },
                    {
                        content: "Item Three"
                    }
                 ]
            }
        });
     });

</script>