views:

39

answers:

2

Is there a service or api that allows wikipedia data regarding a string be retrieved only with javascript?

+1  A: 

Start here: API's for bots.

This is however not programming related. In the future, just consult their own API docs.

BalusC
A: 

Just remember that under normal circumstances, the wikipedia APIs or just regular "Screen Scraping" must be done server side and not directly from the browser. This is due to same-domain restrictions designed to prevent cross domain scripting attacks.

Richard B