How can you say the following in jQuery?
If If textarea AND input.title are NOT empty, then put input.button ON.
My attempt in pseudo-code
if ( $(textarea).not.empty() AND $(input.title).not.empty() ) {
$('.ask_question').attr('enabled, 'enabled');
}