saltybeagle says
16 years ago
I completed some work on an app using the new CORS spec, overall, I think it's fantastic.
latest #9
alvin says
16 years ago
oh do tell more!
saltybeagle says
16 years ago
we needed a way to post a form cross-domain within the new templates, with CORS, we can do it easily.
saltybeagle says
16 years ago
But that's not the big thing -
立即下載
saltybeagle says
16 years ago
we've had that proxy ajax script to do cross-domain xmlhttp for a while, and it has served us well, but it leaves a single point of failure
saltybeagle says
16 years ago
for example, pulling a list of events, or a month widget to another site
saltybeagle says
16 years ago
With CORS supported & a capable browser, we can remove the need for the proxy xhtmlhttp script
saltybeagle says
16 years ago
one less point of failure, and speed improvements for end users == very good
saltybeagle says
16 years ago
We'll still have to fall back to the proxy script on lame browsers like IE<=7 and FF <= 3.0, but this should reduce the bottleneck for some
alvin says
16 years ago
nice! (funkydance)
back to top