__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
/**
* @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();
}
});
}
});