Hey, Im trying to convert specific javascript objects to a String. So far I\'m working with json2.js. As soon as my Object contain functions, those functions are stripped. I
Use String() function http://www.w3schools.com/jsref/jsref_string.asp
var f = function(a, b){ return a + b; } var str = String(f);