| Server IP : 54.36.91.62 / Your IP : 216.73.217.111 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/media/system/js/fields/ |
Upload File : |
/**
* @copyright (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
/**
* Field user
*/
jQuery(document).ready(function ($) {
if (Joomla.getOptions('field-tag-custom')) {
var options = Joomla.getOptions('field-tag-custom'),
customTagPrefix = '#new#';
// Method to add tags pressing enter
$(options.selector + '_chosen input').keyup(function(event) {
var tagOption;
// Tag is greater than the minimum required chars and enter pressed
if (this.value && this.value.length >= options.minTermLength && (event.which === 13 || event.which === 188)) {
// Search a highlighted result
var highlighted = $(options.selector + '_chosen').find('li.active-result.highlighted').first();
// Add the highlighted option
if (event.which === 13 && highlighted.text() !== '')
{
// Extra check. If we have added a custom tag with this text remove it
var customOptionValue = customTagPrefix + highlighted.text();
$(options.selector + ' option').filter(function () { return $(this).val() == customOptionValue; }).remove();
// Select the highlighted result
tagOption = $(options.selector + ' option').filter(function () { return $(this).html() == highlighted.text(); });
tagOption.attr('selected', 'selected');
}
// Add the custom tag option
else
{
var customTag = this.value;
// Extra check. Search if the custom tag already exists (typed faster than AJAX ready)
tagOption = $(options.selector + ' option').filter(function () { return $(this).html() == customTag; });
if (tagOption.text() !== '')
{
tagOption.attr('selected', 'selected');
}
else
{
var option = $('<option>');
option.text(this.value).val(customTagPrefix + this.value);
option.attr('selected','selected');
// Append the option and repopulate the chosen field
$(options.selector).append(option);
}
}
this.value = '';
$(options.selector).trigger('chosen:updated');
event.preventDefault();
}
});
}
});