I have set up Solr and it's working because I can see the search results when I'm typing:
http://localhost:8983/solr/select?q=*:*
in the browser.
However, it doesn't work when I try to contact it through ajax-javascript/jquery.
I've tried with $.get
, $.post
and with the ajax-solr code:
var Manager;
(function ($) {
$(function () {
Manager = new AjaxSolr.Manager({
solrUrl: 'http://localhost:8983/solr/select'
});
Manager.init();
Manager.store.addByValue('q', '*:*');
Manager.doRequest();
});
})(jQuery);
I get no response when I'm checking with firebug.
How comes?