> I am wondering how to assign div class="sortable" to TW tables?

Well, a DIV is an HTML element, and so is a TABLE - so "assigning a div 
to a table" doesn't really make sense to me.
That leaves us with two options:
1) use a DIV as container for the table:
     $('<div class="sortable" />).append(myTable);
2) assign the "sortable" class directly to the TABLE element:
     $(myTable).addClass("sortable");

HTH.


-- F.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TiddlyWikiDev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/TiddlyWikiDev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to