Click here to Skip to main content
15,914,225 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: JavaScript code coverage Pin
Paeth.Claudius-Raphael6-Oct-06 9:29
Paeth.Claudius-Raphael6-Oct-06 9:29 
AnswerRe: JavaScript code coverage Pin
User 17164925-Oct-06 5:01
professionalUser 17164925-Oct-06 5:01 
GeneralRe: JavaScript code coverage Pin
Paul Watson5-Oct-06 6:22
sitebuilderPaul Watson5-Oct-06 6:22 
Questionhow to make web application DDA compliant ? Pin
King Shez3-Oct-06 0:47
King Shez3-Oct-06 0:47 
AnswerRe: how to make web application DDA compliant ? Pin
Paeth.Claudius-Raphael5-Oct-06 0:13
Paeth.Claudius-Raphael5-Oct-06 0:13 
GeneralRe: how to make web application DDA compliant ? Pin
King Shez5-Oct-06 18:11
King Shez5-Oct-06 18:11 
GeneralRe: how to make web application DDA compliant ? Pin
King Shez5-Oct-06 19:23
King Shez5-Oct-06 19:23 
GeneralRe: how to make web application DDA compliant ? Pin
Paeth.Claudius-Raphael6-Oct-06 5:38
Paeth.Claudius-Raphael6-Oct-06 5:38 
Okay, that's the roundabout.

Before i ask you some mo' to see how i can help you, forget about wacg2, these conditions are not able to meet, because there is no browser outside that can render it. By the way wacg2 is a turn-back in my opinion, because it gives a f**k on modularizing site content and consistent stylesheet usage.

So at minimum use a xhtml 1.0 doctype transitional for your pages, so that you can approve that your structure valides. Even better would be the xhtml 1.1 doctype, if you have no necessarity for frames.
Don't forget to call the namespace and set the lang for those browsers that don't render xml.

e.g.:

<!DOCTYPE
html
PUBLIC
"-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"
>
<html
xmlns="http://www.w3.org/1999/xhtml"
xml:lang="en"
lang="en"
>

So if you wanna still produce for IE 6 downwards and browsers like netscape 4 then just take that header i inserted here and forget about the '<?xml version="1.0" encoding="utf-8" ?>'-line you probably have seen on W3-Page or inserted by Wysiwyg-Editors, because they make the formerly named browsers running in a quirks-mode, means they try to render with proprietary xml-sets if contained and else treat the whole thing as html 3 to 3.2 instead of the version you set up in doctype.

I think that should be almost the first thing you ever hadda check in every file.

Then the typical discussion about alt-statements in img-tags and the use of the title-attribute. To see what content should be delivered in the alt-attribute you should look up your page twice with opera set to text- or classic-mode, once as author, once as editor.

For real boy, it's better to gimme a hint how deep ya knowledge of all that is, because it is much effort you have to bring in to make a compatible site.

Just precise what you have and what you want and then we'll see what might be made in the next step.
What kind of editors you use? what is the target-system and thing like that?

Well, i really don't know if any of this might have had helped you if you're through with practicing it, but maybe?

Just try it, take your time.

If you got special questions you're free to send me an e-Mail. Please be specific and precisely as you're able if you're asking for help.

You know, code is poetry, fine and tasty; ...but taste sometimes isn't discussable.

You're Welcome,
Paeth.Claudius-Raphael
QuestionJavaScript and C++ communication Pin
orion45002-Oct-06 6:14
orion45002-Oct-06 6:14 
AnswerRe: JavaScript and C++ communication Pin
led mike3-Oct-06 5:20
led mike3-Oct-06 5:20 
Questionday light savings Pin
V.2-Oct-06 4:59
professionalV.2-Oct-06 4:59 
AnswerRe: day light savings Pin
User 17164922-Oct-06 12:48
professionalUser 17164922-Oct-06 12:48 
GeneralRe: day light savings Pin
V.2-Oct-06 21:46
professionalV.2-Oct-06 21:46 
GeneralRe: day light savings Pin
Guffa3-Oct-06 5:55
Guffa3-Oct-06 5:55 
GeneralRe: day light savings Pin
V.4-Oct-06 1:07
professionalV.4-Oct-06 1:07 
QuestionWhat am I doing wrong with my website? [modified] Pin
phimix2-Oct-06 0:24
phimix2-Oct-06 0:24 
AnswerRe: What am I doing wrong with my website? Pin
Paul Watson2-Oct-06 0:30
sitebuilderPaul Watson2-Oct-06 0:30 
GeneralRe: What am I doing wrong with my website? Pin
phimix2-Oct-06 0:33
phimix2-Oct-06 0:33 
GeneralRe: What am I doing wrong with my website? Pin
GaryWoodfine 2-Oct-06 0:38
professionalGaryWoodfine 2-Oct-06 0:38 
GeneralRe: What am I doing wrong with my website? Pin
Paul Watson2-Oct-06 0:49
sitebuilderPaul Watson2-Oct-06 0:49 
GeneralRe: What am I doing wrong with my website? Pin
Paeth.Claudius-Raphael5-Oct-06 0:29
Paeth.Claudius-Raphael5-Oct-06 0:29 
GeneralRe: What am I doing wrong with my website? Pin
Paul Watson2-Oct-06 0:44
sitebuilderPaul Watson2-Oct-06 0:44 
AnswerRe: What am I doing wrong with my website? Pin
benjymous2-Oct-06 0:49
benjymous2-Oct-06 0:49 
AnswerRe: What am I doing wrong with my website? Pin
Boro_Bob2-Oct-06 0:57
Boro_Bob2-Oct-06 0:57 
GeneralRe: What am I doing wrong with my website? Pin
benjymous2-Oct-06 1:04
benjymous2-Oct-06 1:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.