On Nov 1, 2006, at 8:02 AM, abargnesi wrote: > Zac, > > Thanks for the tip. I used innerHTML on the TD after I created it and > it works perfectly (at least in firefox). > > The reason why I used Mochikit is because I would like to not use > innerHTML (not standard) and also avoid performance penalties by using > the DOM Api directly. > > Is there a way of doing this besides innerHTML or creating the element > directly?
Nope. If you're unwilling to use innerHTML (or are just concerned with a non-pure-DOM approach), your only real option is not using serialized (X)HTML. Use JSON structures and build the DOM programmatically. Zac --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "MochiKit" 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/mochikit -~----------~----~----~----~------~----~------~--~---
