Not understanding the return value of jQuery.form.js or how to parse it
Using Firebug to check the return which is an Object. I guess I don't know how to retrieve the key or value. Maybe this isn't even a jQuery question, maybe javascript.
Anyway the returned value doesn't look like any of the examples I've found.
- $('#ask_bd_form').ajaxForm({
dataType: 'json',
success: function(data){
console.log(data);
}
});
Firebug shows:
- Object { okay="1"}]
Thanks!