Questions tagged [tag-it]

Tag-it is a tag editing jQuery UI widget with autocomplete support.

Tag-it is a simple and configurable tag editing widget with autocomplete support.

  • Source code is available at Github.
  • Actual extensible and idiomatic jQuery UI widget.
  • The widget can be styled using Themeroller or any premade jQuery UI theme.
  • Works with jQuery UI Bootstrap
  • Degrades gracefully for browsers without JavaScript (see example).

It's released under the MIT license.

207 questions
0
votes
1 answer

Tag-it Textarea autogenerate

I've recently got the tag-it jquery successfull working on my site, there is a text area for the users to put in their own tagss, then a textarea, ie. [ dog ] [ park ] [ weekend ] Taking the dog to the park this weekend with Bill! [Post] I've…
user2571547
  • 87
  • 1
  • 1
  • 9
0
votes
2 answers

Split tagit input data into multiple rows

I am using jquery.webspirited.coms tagit jquery, which is working correctly in the sense of creating the tags, separating on the front end, but when I POST the data, it's only posting the last tag as the value to the database.. I can't find any…
user2571547
  • 87
  • 1
  • 1
  • 9
0
votes
1 answer

tag-it - how to use preprocessTag method?

I would like to use tag-it to make lables all uppercase. $('#taglabel').tagit({ availableTags: ['this','label1'] }); how do i join preprocessTag method with available tags? should i use it $('#taglabel').tagit({ "preprocessTag", function(val)…
tada
  • 11
  • 2
0
votes
1 answer

How to pass String collection from controller to view in Spring MVC

I'm trying to use "Tag-it" jQuery UI plugin with Spring MVC My controller gets list of available tags from DAL and add it to model as attribute: @RequestMapping(value = "/", method = RequestMethod.GET) public String home(Model model){ …
Marat Asadurian
  • 593
  • 1
  • 6
  • 18
0
votes
2 answers

tag-it: save to database?

I'm using Tag-it, and I'm trying to save the added tags into my database (with ajax and php). This is what I got: $(document).ready(function() { $("#myTags").tagit({ afterTagAdded: function(event, ui) { …
knzo
  • 65
  • 1
  • 11
0
votes
1 answer

Change the tag-it font size

Does anybody know how to change the size of the fonts appearing in tags of the tag-it plug in? I went over the stylesheet but it does not seam obvious to me how to do it.
user695652
  • 4,105
  • 7
  • 40
  • 58
0
votes
1 answer

Using jQuery tag-it to return 2 variables into 2 different fields with php, mysqli, json

Probably the worst question, but I don't know how else to phrase it. Basically I've implemented the jQuery tag-it into my code. However, I'm using a solution from another user, that works insofar as it pulls the data I want back and dumps it into…
deathtap
  • 99
  • 1
  • 10
0
votes
1 answer

Jquery Tag-It plugin - adding and removing words from the autocomplete-list?

Is there a way to alter the autocomplete-list after initializing the plugin? I'd like to pass an array of new words for the 'availableTags' and be able to remove the old ones. This works even after initializing: $("#mytags").tagit({ …
0
votes
1 answer

Assigning tags to a post from front end using tag-it plugin

Tag-it is a jquery UI plugin that allows assigning tags, exactly like tags system in stackoverflow. https://github.com/aehlke/tag-it/blob/master/README.markdown My goal is to allow members of my wordpress site to post from front end. To do so, I…
Adib Aroui
  • 4,981
  • 5
  • 42
  • 94
0
votes
1 answer

Jquery with Mod_Rewrite change request from somefile.php?q=foo to /somefile/foo?

I'm using Jquery tag-it to get a list of keywords from a remote json string - this works fine. However what I've now got is a situation where instead of jquery 'drilling down' as you type its trying to do a search query on somefile.php?q=foo (foo…
Sk446
  • 1,240
  • 3
  • 19
  • 38
0
votes
1 answer

Getting tagLabel in jquery Tag-it

this is my code : $("#AddFriendToGroup" + GroupID).tagit({ allowDuplicates: false, readOnly: false, autocomplete: { source: function (request, showChoices) { …
Sora
  • 2,465
  • 18
  • 73
  • 146
0
votes
1 answer

add tags to formfield jquery

What I would like to be able to do is add unordered list elements with tagit plugin. This works as shown in the code below. Once the list elements are added, I would like to get their values and add them to a form field in a comma separated list on…
Chris Pilie
  • 451
  • 2
  • 7
  • 21
0
votes
2 answers

Horizontal scrolling with jQuery Tag-it

I'm using jQuery Tag-it for something I'm working on. However, I don't like that whenever I type too many tags, the overflow appears below the tags I've already typed as opposed to just appending the newer tags to the right of whatever I've already…
varatis
  • 14,494
  • 23
  • 71
  • 114
0
votes
0 answers

Check jQuery tag-it input via getJSON

I'm searching for a away to check newly added tag in tag-it (http://aehlke.github.com/tag-it) via getJSON request and allow adding tag with (eventually) edited tagName or disallow adding new tag. For example: Entering "audi s3" will trigger…
glutorange
  • 993
  • 1
  • 10
  • 17
0
votes
1 answer

Tag-It Autocomplete doesn't trigger list on focus

I have this Tag-it plugin up and running with just a flaw that I must correct. It doesnt't show the list of tags when the mouse enters the input field, even with the showAutocompleteOnFocus:true, property. So far I have this code
João Dias
  • 1,078
  • 1
  • 15
  • 38
1 2 3
13
14