How do I parse this json with jQuery?
DayEvents: [{ \"0\": \"886\", \"event_id\": \"886\", \"1\": \"5029\", \"user_id\": \"5029\",
Stolen from .parseJSON() doc.
Example:
Parse a JSON string.
var obj = jQuery.parseJSON('{"name":"John"}'); alert( obj.name === "John" );
Your example code seems to be an object already. You would have the put braces around the whole thing to use and parse it with parseJSON.
parseJSON