Solutoire.com - Ajax Resources
AJAXに関するいろんなサイトがカテゴライズされてまとめられています。
Zimbra - Blog - A Pint of ALE - Ajax Linking and Embedding
Zimbra恐るべし。Windowsの世界でOLEというのがあるんですけど、それのAJAX版を作ってしまったらしいです。
これを使うと、AJAXを使ったオンラインワープロで表が配置されているようなドキュメントでその表をクリックするといきなり編集可能になってしまうわけです。
リンク先のページは英語でよくわかんないかもしれないですけど、スクリーンショットが2つ掲載されているのでそれを見ればイメージつかめるかと。左のやつがよくあるドキュメント。で、右のやつがそのドキュメント中の表をクリックした時の画面です。
Anyhow, after some research I found an excellent post over at the AJAX blog on a general solution to the problem of aborting an AJAX request after a specified amount of time. After a bit of munging I got it to work nicely with prototype, the javascript library of my choice (You may want to check out this Prototype reference if you don’t know how to use it). Here’s the code, commented to explain what’s going on:
何がナイスなのかは多分経験してみないとわかんないけどメモということで。
AJAX scripts - A library of nice looking DHTML(dynamic HTML) scripts - DHTMLgoodies.com
AJAXとDHTMLを利用したサンプルデモのサイトです。
なかなかおもしろいです。
Max Kiesler - Downloadable AJAX Galleries, Slideshows and Effects
AJAXを利用したimage galleries, slideshows, and effects のサンプル集です。
時間のあるときにみよう。
alphaWorks : AJAX Toolkit Framework : Overview
AJAX Toolkit Framework (ATF) provides extensible tools for building IDEs for the many different AJAX (asynchronous JavaScript and XML) run-time environments (such as Dojo, Zimbra, etc.). This technology also contains features for developing, debugging, and testing AJAX applications. The framework provides enhanced JavaScript editing features such as edit-time syntax checking; an embedded Mozilla Web browser; an embedded DOM browser; and an embedded JavaScript debugger.
IBMからリリースされたEclipse用AJAXツールキット。
# Eclipse 3.1.1
# Eclipse Web Tools Platform (WTP) 1.0 (unzip WTP into Eclipse 3.1.1 or above)
# Java™ 1.4.2 (Sun or IBM)
が必須らしいっす。
XML を JSON に変換するサービス - ベータ版を公開 :: Drk7jp
最近、流行りまくっている Web 2.0 と呼ばれるものの基礎技術の1つとして Ajax があげられます。Ajax は大変便利な技術なのですが、セキュリティの観点から自ドメインへのアクセスしか許可されていません(正確には、XMLHTTPRequest のクロスドメイン制限)。
Flash にも同じようにクロスドメイン制限がありますが、crossdomain.xml にて相手側のリクエストを許可する仕組みがありますが Ajax にはコレに相当する仕組みがありません。
そこで注目されはじめた技術が JSON (JavaScript Object Notation) と呼ばれる技術です。JSON は JavaScript 上でそのまま使えるデータ形式でクロスドメイン制限がないという特徴を持ちます。したがって、別ドメインで配布されている JSON を自ドメイン内から JavaScript レベルでデータを利用することができます。