Hello,
I added this to my already existing JQuery tab:
function createTab(name) {
    // this will add a tab via the standard method
    $("#tabs").tabs("add", "#fragment-4", name);
    $("#fragment-" + name).css("display", "block");
}
my question is, what is the syntax that allows me to create content inside the newly created tab?