Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have two files.

location.php, that outputs this:

[["javascript"],["PHP"]] 

and in another file:

<script type="text/javascript">
$.getJSON('location.php', function(data) {
      var sampleTags = [];

      $.each(data, function(key, val) {
         sampleTags.push(val);
         });

         alert(sampleTags); // show javascript, php


        //-------------------------------
        // Preloading data in markup
        //-------------------------------
        $('#myULTags').tagit({
            availableTags : sampleTags, // this param is of course optional. it's for autocomplete.
            // configure the name of the input field (will be submitted with form), default: item[tags]
            itemName : 'item',
            fieldName : 'tags'
        });
    });
</script>

the auto complete doesn't work. Why ?

if i use:

var sampleTags = [ 'javascript', 'php'];

all works well, but with json the autocomplete simply doesn't work.

share|improve this question

2 Answers

up vote 3 down vote accepted
$.each(data, function(key, val) {
  sampleTags.push(val[0]);
});

should reduce [["foo"],["bar"]] to ["foo", "bar"]

share|improve this answer
[["javascript"], ["PHP"]]

is a two dimensional array. Your Javascript is expecting a one dimensional array. Have your PHP output:

[ "javascript", "PHP" ]

In PHP the array should look like this:

array( "javascript", "php" );
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.