Re: [WSG] This is really strange stuff, even for IE

2004-11-19 Thread Iain Harrison
Hello Ted,

Friday, November 19, 2004, 5:16:55 PM, you wrote:

 I want to think that it is something in the main body that is
 throwing it off, but I can't find it yet, I'd appreciate any help.

 here's a page that is acting up:
 http://www.csavg40.com/csa/sitemap-cheap-travel-insurance.do
 Notice the title for initial trip deposit date and how sit date
 is repeated underneath the original mention.  
 The extra sit date is not in the code.

 Are there any Poirot's out there that can ferret out the offending code?

I couldn't see anything obvious, but my first step would be to
amend the html and css so that it validates. w3.org reports 20
html errors and three css errors.

To be honest, I'm not sure that these are the cause of your
problems, but fixing them first makes a lot of sense, and it might
make the problem go away!

-- 
Best regards,
 Iainmailto:[EMAIL PROTECTED]

**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



Re: [WSG] This is really strange stuff, even for IE

2004-11-19 Thread Peter Asquith
Hi Ted
Validating the source sorts out the problem. There's a missing img end 
tag, several  that need to be amp; and some type=text/javascript 
missing from script elements. Adding those fixes the strange behaviour.

Interestingly, the source as it stands causes IE to break if you try 
resizing text with View | Text Size.

Cheers
Peter

Ted Drake wrote:
I'm stuck on a strange behavior with IE.
For some reason, on only a few of our pages, the title of one of our form inputs will wrap and parts of the title will repeat.
Yeah, it's not the greatest description. 
Here's a sample page, naturally it looks fine in ff.
I want to think that it is something in the main body that is throwing it off, but I can't find it yet, I'd appreciate any help.

here's a page that is acting up: http://www.csavg40.com/csa/sitemap-cheap-travel-insurance.do
Notice the title for initial trip deposit date and how sit date is repeated underneath the original mention.  
The extra sit date is not in the code.

Are there any Poirot's out there that can ferret out the offending code?
Thanks
Ted Drake
www.csatravelprotection.com
**
The discussion list for  http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list  getting help
**
 

**
The discussion list for  http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list  getting help
**


RE: [WSG] This is really strange stuff, even for IE

2004-11-19 Thread Ted Drake
Hi guys
I have fixed the image tag, that was an easy one.  The  problem is driving me 
crazy. I remove them when I can but whenever I get rid of them all it trashes 
the javascript functions.  I wish I know which ones are safe to remove. On the 
vast majority of the pages, the  things are the last hurdles. 

Has anyone else conqured this?  What suggestions do you have? We have spent 
many hours going back and forth on this issue.
Ted


-Original Message-
From: Peter Asquith [mailto:[EMAIL PROTECTED]
Sent: Friday, November 19, 2004 10:30 AM
To: [EMAIL PROTECTED]
Subject: Re: [WSG] This is really strange stuff, even for IE


Hi Ted

Validating the source sorts out the problem. There's a missing img end 
tag, several  that need to be amp; and some type=text/javascript 
missing from script elements. Adding those fixes the strange behaviour.

Interestingly, the source as it stands causes IE to break if you try 
resizing text with View | Text Size.

Cheers
Peter



Ted Drake wrote:

I'm stuck on a strange behavior with IE.
For some reason, on only a few of our pages, the title of one of our form 
inputs will wrap and parts of the title will repeat.
Yeah, it's not the greatest description. 
Here's a sample page, naturally it looks fine in ff.
I want to think that it is something in the main body that is throwing it off, 
but I can't find it yet, I'd appreciate any help.

here's a page that is acting up: 
http://www.csavg40.com/csa/sitemap-cheap-travel-insurance.do
Notice the title for initial trip deposit date and how sit date is repeated 
underneath the original mention.  
The extra sit date is not in the code.

Are there any Poirot's out there that can ferret out the offending code?

Thanks
Ted Drake
www.csatravelprotection.com


**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**


  


**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**

**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



Re: [WSG] This is really strange stuff, even for IE

2004-11-19 Thread Patrick H. Lauke
Ted Drake wrote:
Hi guys
I have fixed the image tag, that was an easy one.  The  problem is driving me crazy. I remove them when I can but whenever I get rid of them all it trashes the javascript functions.  I wish I know which ones are safe to remove. On the vast majority of the pages, the  things are the last hurdles. 

Has anyone else conqured this?  What suggestions do you have? We have spent 
many hours going back and forth on this issue.
Ted
Well, I'd suggest hiding any decision making logic within the external 
javascript file, and only using clean function calls on your event 
handlers...if that makes sense (sorry, bit too sozzled at this point to 
expand on it ;) )

Patrick H. Lauke
_
re·dux (adj.): brought back; returned. used postpositively
[latin : re-, re- + dux, leader; see duke.]
www.splintered.co.uk | www.photographia.co.uk
http://redux.deviantart.com
**
The discussion list for  http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list  getting help
**


Re: [WSG] This is really strange stuff, even for IE

2004-11-19 Thread Ben Curtis

The  problem is driving me crazy. I remove them when I can but 
whenever I get rid of them all it trashes the javascript functions.  I 
wish I know which ones are safe to remove. On the vast majority of the 
pages, the  things are the last hurdles.
Ack! Don't remove the  unless you know what they do. CDATA is your 
friend.

script type=text/javascript
!-- // ![CDATA[
   function matchwo(a,b) {
  if (a  b  a  0) return 1;
  else return 0;
   }
// ]] --
/script
The XML parser for your XHTML document will ignore anything in a CDATA 
block, and a browser that doesn't understand the script tag will ignore 
everything between the comments.

--
Ben Curtis
WebSciences International
http://www.websciences.org/
v: (310) 478-6648
f: (310) 235-2067

**
The discussion list for  http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list  getting help
**