I'm getting the error bellow on the browser Javascript console when the page loads thus the control doesn't get created:
Uncaught TypeError: Object [object Object] has no method 'listview'
HTML
<ul id="list">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<!-- List can contain optional list dividers to group items -->
<li data-role="list-divider">List divider</li>
<li>Item 4</li>
<li>Item 5</li>
<li>Item 6</li>
</ul>
JS:
$('#list').mobiscroll().listview({
theme: 'ios',
sortable: true
});
I'm using the latest version from GitHub.
Does this list component require a subscription?