7. Februar 2012 14:42
Hallo Michael,
ich fürcht ich muss dir widersprechen...
Die Offline Buttons können mit folgendem Script im Online Modus ausgeblendet werden:
if(IsOnline())
{
var comps = document.getElementsByTagName('li');
for (var i = 0; i < comps.length; i++)
{
if ((comps[i].title == "ISV Button 1 - Offline") || (comps[i].title == "ISV Button 1 - Offline") || (comps[i].title == "ISV Button 1 - Offline") || (comps[i].title == "ISV Button 1 - Offline"))
{
comps[i].style.display = "none";
break;
}
}
}
else
{
}
if(IsOnline())
{
var comps = document.getElementsByTagName('li');
for (var i = 0; i < comps.length; i++)
{
if ((comps[i].title == "ISV Button 2 - Offline") || (comps[i].title == "ISV Button 2 - Offline") || (comps[i].title == "ISV Button 2 - Offline") || (comps[i].title == "ISV Button 2 - Offline"))
{
comps[i].style.display = "none";
break;
}
}
}
else
{
}
Grüße
Christoph