Hello -- Any idea/thoughts on, How to convert JavaScript objects in
XML using MochiKit?
For e.g:
var MyObj = function() {
this.name = "Joe Doe";
this.address = "1000 Main st";
this.city = "Kansas";
}
Expecting to get Member.toXML() into:
<jsobject name="MyObj">
<member name="name">Joe Doe</member>
<member name="address">1000 Main st</member>
<member name="city">Kansas</member>
</jsobject>
Thx.
--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---