dom - Is it safe to modify the document Object in javascript? -
dom - Is it safe to modify the document Object in javascript? -
i'm wondering if can modify document object this, guarantee existence of document.getelementsbyclassname(), or if there limitation on modifying document in browsers:
if(typeof document.getelementsbyclassname !== 'function') document.getelementsbyclassname = function(class_name){ // custom function };
yes, can. document
object behaves every other object in javascript, it's extensible.
javascript dom object
Comments
Post a Comment