![]() | ![]() |
|
Welcome to the HEXUS.community discussion forums forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and other features. By joining our free community you will have access to post topics, respond to polls and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! |
|
|||||||
HEXUS.net Latest! Latest! Get your fix on what’s happening in planet HEXUS and beyond ![]() |
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 (permalink) |
|
HEXUS webmaster
Join Date: Nov 2003
Location: Bristol
Posts: 11,379
Thanks: 17
Thanked 91 Times in 58 Posts
|
Accessible Odeon Returns (Sort-Of)
Remember the plight of Matthew Somerville, a lone man who provided a version of Odeon accessible to all, particularly Firefox users? Odeon didn't like their horrible site being replicated in any accessible way (possibly their own version ended up being less popular?), so Matthew had to remove his work. However, he has now found a way around the problem.
Using Greasemonkey, a Firefox plugin which essentially enables DHTML, Matthew has created a script to run the menu of the Odeon website. Read more about it over at the Accessible Odeon website. |
|
|
|
|
|
#2 (permalink) |
|
Common Sense Advocate
Join Date: Jul 2003
Location: Preston
Posts: 712
Thanks: 1
Thanked 2 Times in 1 Post
|
Its a disgrace that a large company such as the odeon dont have pages compliant with all browsers.
If a site doesn't display/function correctly in firefox I would tend not to use the site in question be it retail or otherwise. They should have had this sorted ages ago so theres no excuse for this one... |
|
|
|
|
|
#3 (permalink) |
|
More l33t than dangel
Join Date: Jul 2003
Location: /dev/urandom
Posts: 13,322
Thanks: 27
Thanked 252 Times in 199 Posts
|
Originally Posted by Rabs
the ten-line fix for their javascript was first published in 2001
Code:
if (document.layers) {
doc = 'document.';
stylo = '';
pxt = '.top';
pxl = '.left';
large = innerWidth; longue = innerHeight;
window.captureEvents(Event.RESIZE);
window.onresize = tienstoibien;
n4 = 1;
}
if (document.all) {
doc = 'document.all.';
stylo = '.style';
pxt = '.pixelTop';
pxl = '.pixelLeft';
n4 = 0;
}
Code:
if (document.layers) {
// Navigator 4.x
doc = 'document.';
stylo = '';
pxt = '.top';
pxl = '.left';
large = innerWidth; longue = innerHeight;
window.captureEvents(Event.RESIZE);
window.onresize = tienstoibien;
n4 = 1;
}
else if (window.captureEvents) {
// Netscape 6
doc = 'document.';
stylo = '.style';
pxt = '.top';
pxl = '.left';
large = innerWidth;
longue = innerHeight;
n4 = 0;
}
else if (document.all) {
// IE4+
doc = 'document.all.';
stylo = '.style';
pxt = '.pixelTop';
pxl = '.pixelLeft';
n4 = 0;
}
|
|
|
|
![]() |
| Breadcrumb | ||||||
|
||||||
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
|
|