hasChildren

Returns whether the given node has children. Accepts a jQuery object, DOM Element or a path identifying the node.

<ul id="treeview">
    <li>My Project
        <ul>
            <li id="someid">js</li>
            <li>css</li>
        </ul>
        <li>index.html<li>
        <li>upload.php<li>
    </li>
</ul>

<script type="text/javascript">
    jQuery(function ($) {
        var treeview = $("#treeview").shieldTreeView().swidget();

        // prints true
        console.log(treeview.hasChildren([0]));
    });
</script>