gibt es nen Framework für JavaScript? Meine damit ne Script Datei, in der Funktionen stehen, die alle/die wichtigsten HTML- Objekt Funktionen wrappen und für alle Browser vereinheitlichen.
For Example:
function changePosition(id, x, y)
{
if (IExplorer)
{
document.all(id).style.posTop = y
document.all(id).style.posLeft = x
}
if (Netscape)
{
...
}
}
function setVisible(id, visible)
{
if (IExplorer)
{
if (visible)
document.all(id).style.visibility = 'visible'
else
document.all(id).style.visibility = 'hidden'
}
if (Netscape)
{
...
}
}
Gruß Michael