Can You Verify Please??

M

Mark Parnell


Presumably http://www.magicfreebiesuk.co.uk/july2.html
I am not the best at html so am not very confident that this will have
worked and especially for all browsers.

The HTML has nothing to do with it.
When you click on the individual dates does that update come up for you?
Yes.

Also is there anything wrong in using these types of menus? Can some
browsers not view them?

Anyone with Javascript disabled/unavailable (most estimates say around
15%). Plus Googlebot (though in this case the additional text is in the
source, so Googlebot will still see it anyway). You could display the
information by default (which you're not doing at the moment), then hide
it with Javascript when the page loads (and show it again when the link
is followed). That way everyone will still get the information. But I
think you're trying to do too much. Why not just link them to separate
pages? Or even anchors in the current page if you really want to? The
user has to download all of the information anyway, so why not let them
see it?
 
P

Phil

MagicFreebiesUK.co.uk said:
Hi,

I have tried using more advanced menu html for the first time this evening
and I was just wondering if it works on other's computers.

Hoping that someone could quickly verify it for me.
http://www.magicfreebiesuk/july2.html

I am not the best at html so am not very confident that this will have
worked and especially for all browsers.

When you click on the individual dates does that update come up for you?

Also is there anything wrong in using these types of menus? Can some
browsers not view them?

Thanks in advance.
Tom
Tried the link you provided but all I got was a " Bad Gateway" erroes page.
Sorry, I hope this helps - this was on I.E. 6
 
M

MagicFreebiesUK.co.uk

Hi,

I have tried using more advanced menu html for the first time this evening
and I was just wondering if it works on other's computers.

Hoping that someone could quickly verify it for me.
http://www.magicfreebiesuk/july2.html

I am not the best at html so am not very confident that this will have
worked and especially for all browsers.

When you click on the individual dates does that update come up for you?

Also is there anything wrong in using these types of menus? Can some
browsers not view them?

Thanks in advance.
Tom
 
T

Toby Inkster

MagicFreebiesUK.co.uk said:
Also is there anything wrong in using these types of menus? Can some
browsers not view them?

Any browser with CSS support but no Javascript (either not supported,
switched off or filtered out by a proxy) will not be able to access the
content. There is a simple fix though:

Change this:
<p id="listTwo" style="display:none">

to this:
<p id="listTwo">

(do that for all the expandy bits)

and then create a Javascript function called "init" like this:

<script type="text/javascript"><!--
function init(){
document.getElementById('listOne').style.display='none';
document.getElementById('listTwo').style.display='none';
document.getElementById('listThree').style.display='none';
}
//--></script>

and add it to your body onload:
<body onload="init();">

Now the lists will be initially hidden using Javascript (not CSS).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,009
Latest member
GidgetGamb

Latest Threads

Top