In this documentation, $container means a jQuery collection of DOM elements.
$('#id').nosTabs('open', {
url: 'url',
iframe: false,
label: 'Title',
labelDisplay: true,
iconUrl: 'icon.png',
iconSize: 16
});
Many functions of the Novius OS Javascript API have sub-functions. The first parameter is the name of a sub-function. If this parameter is omitted, the default sub-function is called.
$('#id').nosTabs('open', { url: 'url', iframe: false, label: 'Title', labelDisplay: true, iconUrl: 'icon.png', iconSize: 16 }); // This call do the same thing that the previous $('#id').nosTabs({ url: 'url', iframe: false, label: 'Title', labelDisplay: true, iconUrl: 'icon.png', iconSize: 16 });