We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example I want the value of the placeholder to be an empty string, when a tag is added.
I tried the following
tagify.on('add', e => { tagify.settings.placeholder = ''; e.detail.tagify.settings.placeholder = ''; });
but it didn't work.
The text was updated successfully, but these errors were encountered:
You can do it with CSS only (demo page)
.tagify__tag + .tagify__input::before{ display:none }
Put this somewhere in your project's CSS (it depends how you manage your CSS files)
Sorry, something went wrong.
No branches or pull requests
For example
I want the value of the placeholder to be an empty string, when a tag is added.
I tried the following
but it didn't work.
The text was updated successfully, but these errors were encountered: