Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm getting unexpected token error on the first letter of what is in my document.

$('#typeahead').typeahead({
source: function (typeahead, query) {
    return $.post('ajax/page.php', { query: query }, function (data) {
        alert(data);
        return typeahead.process(JSON.parse(data));
    });
}
});

In my page.php:

<?php 
        $array[] = array("test","treat","food");
        $json = json_encode($array);
        echo "<script>var query = ".$json.";</script>";
?>

So with this code, I get an error with Uncaught Syntax: Unexpected token <

So when I remove <script></script> so it'll just echo "var query=".$json.";", I get Uncaught Syntax: Unexpected token v.

So I'm assuming it'll just keep giving me unexpected token of the first letter that is being echo'd out of page.php

Can someone tell me what is wrong?

Thanks!

share|improve this question

1 Answer

up vote 1 down vote accepted
$('#typeahead').typeahead({
source: function (query, process) {
    return $.post('ajax/page.php', { query: query }, function (data) {
        process(JSON.parse(data));
    });
}
});

//page.php
$array = array("test","treat","food");
echo json_encode($array);
share|improve this answer
this gives me process not defined, so I did return typeahead.process(data) and it just returns the first letter repeats that letter a few times. – andrewliu Jan 11 at 8:18
which version of boostrap you use? In Version 2.2.2 (latest) all works. Working demo: filehosting.org/file/details/410520/trash.7z – cetver Jan 11 at 8:34
Awesome! It worked! I forgot to change the paramteres (query,process). Also, I had to remove the [] from $array[]. Why is that? Thanks! – andrewliu Jan 12 at 4:52
$array = array(); - declares array $array[] = array(); declares two - dimensional array – cetver Jan 12 at 8:22
1  
show 2 more comments

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.