Hello developer,
I try to build a webapp that takes of a webpage, extracts (scrapes) a part of it and then displays it the part inside an own UI.
Getting the external webpage is done with jquery-ajax. I currently use 1.8.3 ( I have used the 1.7, but is was also not successful)
In cloud-preview, I get an ajax exception: "No Transport"
My ajax call looks like this:
Before I tried the direct load-method from jquery, but this has also not worked.Code:$.ajax({ url: Scraper.articleURL, type: 'GET', dataType: 'html', success: Scraper.gotArticle, error: Scraper.notGotArticle });
Does anybody has an idea what the problem is?
Regards
Karsten Meier

Reply With Quote

