iNettuts widgets
iNettuts widgets
Hi Guys
Does anyone know how to get the widgets to hide the content when the page loads as oppose to show the contents and then collapse???
here is the link to the page:
http://lghosting.com/dev/lakeside/
Java script below:
if (thisWidgetSettings.collapsible) {
$('<a href="#" class="collapse">More info</a>').mousedown(function (e) {
e.stopPropagation();
}).toggle(function () {
$(this).css({backgroundPosition: '-38px 0'})
.parents(settings.widgetSelector)
.find(settings.contentSelector).hide();
return false;
},function () {
$(this).css({backgroundPosition: ''})
.parents(settings.widgetSelector)
.find(settings.contentSelector).show();
return false;
}).prependTo($(settings.handleSelector,this));
}
});
Help would be very much apprciated