function $(id){return document.getElementById(id) );
古いブラウザを使用している場合は、次の関数を使用できます。
function $(objectId) {
if(document.getElementById && document.getElementById(objectId)) {
// W3C DOM
return document.getElementById(objectId);
}
else if (document.all && document.all(objectId)) {
// MSIE 4 DOM
return document.all (objectId);
}
else if (document.layers && document.layers[objectId]) {
// NN 4 DOM.. 注: これではネストされたレイヤーは見つかりません
return document .layers[objectId];
}
else {
return false>}
}
でドキュメントを置き換えます。 .getElementByIdは、シンプルではありますが、prototypeやjqueryなどのフレームワークを参照しないものに関しては、毎回document.getElementByIdを記述する必要がなく、公開されているJavaScriptファイルに定義しておけばどこでも利用できます。