Page is a not externally linkable
Fotiman - 1:56 pm on May 24, 2012 (gmt 0)
Anything that is string data, you would want to wrap in quotes. For example:
x = 'action: "' + action + '", ';
x += 'rowid: ' + id + ', ';
x += 'table: "' + table + '", ';
x += 'category: "' + category + '"';
Note, you may want to scrub those variables first to make sure none of them contain quotes.