From 743b203709460155bc6e6cc5954d4c7d2b310d5c Mon Sep 17 00:00:00 2001 From: Konstantin Haase Date: Thu, 20 Sep 2012 14:18:35 +0200 Subject: [PATCH] fix link --- docs/01_cross_origin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/01_cross_origin.md b/docs/01_cross_origin.md index 031f7209..2119d004 100644 --- a/docs/01_cross_origin.md +++ b/docs/01_cross_origin.md @@ -3,7 +3,7 @@ When write an in-browsers client, you have to circumvent the browser's [same origin policy](http://en.wikipedia.org/wiki/Same_origin_policy). Generally, we offer two different approaches for this: -[Cross-Origin Resource Sharing](http://en.wikipedia.org/wiki/CORS) (aka CORS) +[Cross-Origin Resource Sharing](http://en.wikipedia.org/wiki/Cross-origin_resource_sharing) (aka CORS) and [JSONP](http://en.wikipedia.org/wiki/JSONP). If you don't have any good reason for using JSONP, we recommend you use CORS.