2012-02-10 03:45:17 -05:00
|
|
|
jQuery( function($) {
|
|
|
|
var id = typeof( current_site_id ) != 'undefined' ? '&site_id=' + current_site_id : '';
|
|
|
|
|
|
|
|
$( '#adduser-email, #newuser' ).autocomplete({
|
|
|
|
source: ajaxurl + '?action=autocomplete-user' + id,
|
|
|
|
delay: 500,
|
2012-02-10 13:05:20 -05:00
|
|
|
minLength: 2
|
2012-02-10 03:45:17 -05:00
|
|
|
});
|
|
|
|
});
|