Pixabay / jQuery-tagEditor

A powerful and lightweight tag editor plugin for jQuery.
501 stars 164 forks source link

addTag issue #138

Open theo-bot opened 6 years ago

theo-bot commented 6 years ago

Hi

When using the addTag method I get an unsollicited space before each tag.

Please advise

/Theo pixabay

PatriceBX commented 5 years ago

The bug is in jquery.tag-editor.js, on 'addTag' handling:

                    if (!blur) ed.click();
                    else $('.placeholder', ed).remove();

In other words, if blur is false, then placeholder is not removed.
So a workaround would be to call .('addTag', 'mytag', true);