I'm writing a function to make an AJAX POST request on the click of an input button with jQuery. The button's click function is being defined in $(document).ready(). What I'm noticing is, when the button is clicked, the text pulled from the textarea is the default text it was populated with, and not whatever the user may have changed it to. Code snippet follows:
$(document).ready(function() {
$('#add-note-button').click(function() {
var note_data = {};
note_data["notetext"] = $('#notetext').text();
alert($('#notetext').text());
note_data["author"] = 123;
$.ajax( {
type:'POST',
url:'/myapp/post_note/1/',
data:note_data,
success: function(data){
}
});
});
});
Later on in the HTML:
<textarea id="notetext">Add status update... </textarea>
<input id='add-note-button' type='submit' value="Save"/>
The alert($('#notetext').text()); from the click() function above only ever shows "Add status update..." and not the text I am typing into the textarea.
Appreciate the help!