i have this form and im trying to get the value from the text area. for some reason it doesn\'t want to.
You don't need to use textarea#message
textarea#message
var message = $('textarea#message').val();
You can directly use
var message = $('#message').val();