9 lines
298 B
JavaScript
9 lines
298 B
JavaScript
// xCreateElement, Copyright 2001-2005 Michael Foster (Cross-Browser.com)
|
|
// Part of X, a Cross-Browser Javascript Library, Distributed under the terms of the GNU LGPL
|
|
|
|
function xCreateElement(sTag)
|
|
{
|
|
if (document.createElement) return document.createElement(sTag);
|
|
else return null;
|
|
}
|