All Projects → JamesFT → Database-Quotes-JSON

JamesFT / Database-Quotes-JSON

Licence: other
JSON file with more than 5000+ famous quotes.

#Database Quotes JSON ##JSON file with more than 5000+ famous quotes.

###Some example on how to work on this JSON quotes file

//return array of all quotes with 12 words max
var filePath = "quotes.js";
$.getJSON(filePath).done(function (data) {
	return data.filter(function (o) {
		return o.quoteText.split(" ").length <= 12;
	});
});

//return array of all quotes of Buddha
var filePath = "quotes.js";
	$.getJSON(filePath).done(function (data) {
		return data.filter(function (o) {
			return o.quoteAuthor === "Buddha";
		});
	});
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].