Skip to content

Instantly share code, notes, and snippets.

Created January 12, 2012 19:59
Show Gist options
  • Save anonymous/1602756 to your computer and use it in GitHub Desktop.
Save anonymous/1602756 to your computer and use it in GitHub Desktop.
var addSubSection = function(type,ssection,name) { //Support for sections by Wobak
var subsection = $("<div class='subsection'><div class='name'></div></div>")
subsection.css({width:('subsection.width'),height:20});
subsection.find('.name').text(name);
$('.itemholder[type="' + ssection.type + '"]').append(subsection);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment