Сообщение от Kolyaj
|
Обычно меняют на $
|
а потом создают объект-обертку и начинают изобретать свой jquery
function $( id ){
return new MyFramework(id);
}
function MyFramework( id ){
this._el = typeof id == 'stirng' ? document.getElementById(id) : id;
}
MyFramework.prototype.val = function(){
return this._el.value;
}