cls

Optional CSS class to add to the rendering element:

<div id="listbox"></div>

<script type="text/javascript">
    $(function () {
        $("#listbox").shieldListBox({
            dataSource: {
			    data: countries
		    },
            textTemplate: "{name}",
            cls: "MyListBox"
        });
    });
</script>