Seems like I have some sort of environmental issue, but I'm not sure how to proceed debugging this.
I am using jQuery-tokeninput and all works well on localhost. However, once moved over to my production box it stops working.
I am using chromes 'Developer Tools' to trouble shoot. The JQuery call is somewhat working as the data is collected from the database and I can see it in the response. Everything looks good, but it just does not render the drop down, and it stuck on 'Searching'. No errors are being thrown in Chrome's 'Developer tools' and I see no related errors in the apache logs.
I'm pretty stuck here as no errors makes it quite hard to trouble shoot.
Any ideas/suggestions would be really appreciated !
EDIT
Although the response of this call is identical between both environments, the full list of header elements is not.
Viewing the headers here are any elements not matching.
Localhost (windows evironment):
Request URL:http://localhost/dropdown_getcontact.php?q=raq
Accept:application/json, text/javascript, */*; q=0.01
X-Requested-With:XMLHttpRequest
Query String Parametersview sourceview URL encoded
q:raq
Production Environment (linux environment):
Request URL:http://localhost/dropdown_getcontact.php?callback=jQuery110204361302594188601_1392780655198&q=raq&_=1392780655199
Accept:*/*
Query String Parametersview sourceview URL encoded
callback:jQuery110204361302594188601_1392780655198
q:raq
_:1392780655199
Cheers, ck