# bbpress/2.6.17/includes/admin/assets/js/common.js

bbPress, version 2.6.17. 15 lines.

- Page: https://pluginprobe.com/plugins/bbpress/2.6.17/code/includes/admin/assets/js/common.js
- Raw: https://pluginprobe.com/plugins/bbpress/2.6.17/raw/includes/admin/assets/js/common.js
- Modified: 2020-04-05T19:31:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/bbpress/2.6.17/code/includes/admin/assets/js/common.js#L10-L20`.

```javascript
jQuery( document ).ready( function() {

	var bbp_author_id = jQuery( '#bbp_author_id' );

	bbp_author_id.suggest(
		bbp_author_id.data( 'ajax-url' ),
		{
			minchars: 1, // Allow single-digit user IDs
			onSelect: function() {
				var value = this.value;
				bbp_author_id.val( value.substr( 0, value.indexOf( ' ' ) ) );
			}
		}
	);
} );
```
