Read continuous feed from CouchDB using Ajax/jQuery
问题 I want to listen for continuous changes from CouchDB using jQuery - now this works: http://localhost:5984/testdb/_changes?feed=continuous which means that I get a new line of json every time there is a db update - but how do I read updates off this URL using jQuery? I tried using this but it doesn't work: $.ajax( { url : "http://localhost:5984/testdb/_changes?feed=continuous&callback=?", dataType : 'json', success : function(data) { alert(data.results.length); } }); Edit : $.ajax calls the