Index: /CKEditor/trunk/_dev/docs_build/docs_build.conf
===================================================================
--- /CKEditor/trunk/_dev/docs_build/docs_build.conf	(revision 6446)
+++ /CKEditor/trunk/_dev/docs_build/docs_build.conf	(revision 6447)
@@ -16,4 +16,5 @@
 	[
 		'../../_source/core/',
+		'../../_source/adapters/',
 		'../../_source/plugins/',
 		'../../_source/skins/kama/skin.js',
Index: /CKEditor/trunk/_source/adapters/jquery.js
===================================================================
--- /CKEditor/trunk/_source/adapters/jquery.js	(revision 6446)
+++ /CKEditor/trunk/_source/adapters/jquery.js	(revision 6447)
@@ -33,13 +33,19 @@
 {
 	/**
-	 * Allow CKEditor to override jQuery.fn.val(). This results in ability to use val()
-	 * function on textareas as usual and having those calls synchronized with CKEditor
-	 * Rich Text Editor component.
-	 *
-	 * This config option is global and executed during plugin load.
-	 * Can't be customized across editor instances.
-	 *
+	 * Allows CKEditor to override jQuery.fn.val(), making it possible to use the val()
+	 * function on textareas, as usual, having it synchronized with CKEditor.<br>
+	 * <br>
+	 * This configuration option is global and executed during the jQuery Adapter loading.
+	 * It can't be customized across editor instances.
 	 * @type Boolean
 	 * @example
+	 * &lt;script&gt;
+	 * CKEDITOR.config.jqueryOverrideVal = true;
+	 * &lt;/script&gt;
+	 * &lt;!-- Important: The JQuery adapter is loaded *after* setting jqueryOverrideVal --&gt;
+	 * &lt;script src="/ckeditor/adapters/jquery.js"&gt;&lt;/script&gt;
+	 * @example
+	 * // ... then later in the code ...
+	 * 
 	 * $( 'textarea' ).ckeditor();
 	 * // ...
