Сообщение от Tecvid
|
function attr(selector, attribute, value) {
var al = arguments.length;
if (al == 2) {
return sel(selector).getAttribute(attribute);
} else if (al == 3) {
return sel(selector).setAttribute(attribute, value);
}
}
|
Это можно было бы сократить нмного
function attr(selector, attribute, value) {
if (!value) return sel(selector).getAttribute(atribute)
return sel(selector).setAttribute(attribute, value);
}