There is a form, and on submit I convert it to a serialized string to submit the form via ajax.
var data = $$.serialize();
Now there is an input field called "title", and I want its value to display a message. So I'm looking for a way to do just that. I tried;
alert(data.name);
But I found out that this is not a method.
UPDATE
Here is the fiddle: http://jsfiddle.net/wHBYK/
source share