menu

The UL element defining the items of the context menu, associated with the SplitButton. See the Menu documentation for more details about the acceptable structure of the UL element.

<button id="but1"></button>
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>

<script type="text/javascript">
     $(function () {
        $("#but1").shieldSplitButton({
            menu: "#menuId"
        });
     });
</script>