i've created a new js function like this
Object.prototype.testFn = function(){
s=this;
alert(s);
}
a='word';
a.testFn();
i'ts working as well, but, when i use jQuery sdk, then i call jQuery live, my testFn function is called repeatedly. and sometimes, the whole script is not working...