In fact, it doesn't completely ignore them, because I first check to
see if Safari understands them:
if (e && e.preventDefault && e.stopPropagation)
And it does. It's when I attempt to run these functions, that nothing
happens:
if (e && e.preventDefault && e.stopPropagation)
{
// safari gets inside this if statement, but then fails to execute the
following two lines
e.preventDefault();
e.stopPropagation();
// this alert is executed, however
alert("link should be dead");
}
Does anyone have any suggestions as to what I can do?
Many thanks -- Dunstan Orchard
_______________________________________________
web-development mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/web-development
Do not post admin requests to the list. They will be ignored.