what don’t you understand? The error could hardly be more descriptive. It’s a security feature to prevent JSON hijacking, you can disable it like this..
return Json(new { mymsg = "my msg" }, JsonRequestBehavior.AllowGet);
but you should understand the implications.