I have one input
<input type="text" style="width:200px" id="myInputTags" placeholder="add tag" /> <input type="button" id="btnId" />
in script
jQuery("#myInputTags").textext({ plugins: 'tags' });
Now, when I press the enter button in this input, a tag is created, but I want to add these tags after clicking on my button and after pressing the space bar, some suggestion?
source share