セレクターの値をプロトタイプに送りたい。現在私は使用しています
var selector; //id of html element
function $(selector)
{
if(window===this)
return new $(selector);
return this;
}
$.prototype={
tooltip: function(){
console.log(selector);
//do calculations with the selector value
return this;
}
};
未定義と表示されています。
変数を渡す方法はありますか?