What i am doing , i have written an html file in my local desktop(not hosted in any server). In the html head in have included remote .do in the head
so in the html i have included the search autocomplete from remote site in the head . when i do searching the server responds with data in server log. But the respond is not painting as css which is present there.
But when i hit the URL directly
https://devlopenvironment/project/index.do and search autocomplete is working.
when i debug the code i found that the following code (the body of jQuery.get body is not executing)
jQuery.get(constructURL(q), function(data) {
getData(q, data ); });
Can you help Now.