I have a CKEditor textarea:
 <textarea id='notification_message' name='notification[message]'>
I am just trying to read the value of ckeditor textarea via below code:
  var message = $("textarea[name='notification[message]']").val();
  alert(message);
But it give me blank value. How could I get the ckeditor textarea value?
 
     
    