I have a very basic ajax call to alert the data that was reported from the server
$.ajax({ type: \"POST\", url: \"/someform/act\", //edit utl t
You need to use JSON.stringify(data) in the alert to get anything readable.
JSON.stringify(data)
alert
Also, $data is a completely different variable name than data.
$data
data