1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| // fichier bscript.js
(function( window, undefined ) {
var bScript = (function(){
var param = arguments[0];
var type = param.split("")[0];
param = param.replace(type,"");
if(type=="#"){
var obj = document.getElementById(param);
obj.html = function(){if(arguments.length==0){return obj.innerHTML;}else if(arguments.length==1){obj.innerHTML = arguments[0];}};
return obj;
}
if(type=="."){
var obj = document.getElementsByClassName(param);
for(var j=0;j<obj.length;j++){
obj[j].html = function(){return obj[j].innerHTML;};
}
return obj;
}
});
window.bScript = window.$ = bScript;
})( window ); |