Go Back   CodingForums.com > :: Client side development > HTML & CSS

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 05-20-2010, 02:55 PM   PM User | #1
ILoveKnowledge
New Coder

 
Join Date: Mar 2010
Posts: 26
Thanks: 4
Thanked 0 Times in 0 Posts
ILoveKnowledge is an unknown quantity at this point
What am I doing wrong?

Hello all...I went and manually checked all my php files but everytime I load my website gcloan . com when all the content loads; on the bottom left of the browser the "error yellow exclamation mark" and when I click on it for more information to find out the specific error it states the following as listed below:

Quote:
Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E; AskTB5.6)
Timestamp: Thu, 20 May 2010 13:45:08 UTC


Message: Object expected
Line: 42
Char: 1
Code: 0
URI: gcloan.com/index.php

Message: Object expected
Line: 42
Char: 1
Code: 0
URI: gcloan.com/index.php
I checked all the codes but I don't know what I am doing wrong? I tried to debug it...check the W3CMarkup Validator but I seem to be stuck...can anyone help me on this or give any insight on what I should do?
ILoveKnowledge is offline   Reply With Quote
Old 05-20-2010, 03:11 PM   PM User | #2
VIPStephan
The fat guy next door


 
VIPStephan's Avatar
 
Join Date: Jan 2006
Location: Halle (Saale), Germany
Posts: 7,705
Thanks: 5
Thanked 876 Times in 851 Posts
VIPStephan is a jewel in the roughVIPStephan is a jewel in the roughVIPStephan is a jewel in the rough
Hm, Firefox doesn’t come up with erros (in the console at least) but you do have errors in your code. The first one I’m getting is:
Quote:
Line 21, Column 18: document type does not allow element "DIV" here; missing one of "TH", "TD" start-tag

<div id="top_seo"><td align="center" class="top_seo">Home mortgage lenders &amp…
You have placed a div as child of a tr but that’s not allowed. Only td can be direct children of tr and any element must be inside the td for that matter. The other errors relate to that. See if fixing thos solves the issue.

And P. S.: I’m obliged by the law of good conscience to inform you that tables for layout are stupid and should not be used in the manner you are using them. Instead, you should use semantic HTML and style it entirely with CSS.
__________________
Don’t click this link!

Last edited by VIPStephan; 05-20-2010 at 03:15 PM..
VIPStephan is offline   Reply With Quote
Old 05-20-2010, 07:22 PM   PM User | #3
weaver
New Coder

 
Join Date: Dec 2009
Posts: 11
Thanks: 0
Thanked 1 Time in 1 Post
weaver is an unknown quantity at this point
I have about 3 ideas in my brain about your error situation.

1) I use a little freeware coding software that also has a validate function that allows me to find most errors before they get uploaded. If it is cricket to mention it, it is CSE Validator Lite. They also have more robust versions available for a fee. It has saved me a lot of time. (by the way, it too shows the error that the other commenter mentioned.)

2) When I run your code through the w3c validator, it shows 34 errors. Once I get to the validator, I usually try to troubleshoot error by error. As you do so, remember that some of the errors might be in your main page and some might be in your included files.

3) You could also choose the validator option of "Clean up markup with html tidy". You could then make a new test file and paste the tidied markup in it and with that new name, look at your new page and see if it works. DO NOT OVERWRITE your original file.

BEWARE: If all is tested out and works ok, you might be tempted to go ahead and use the tidied output in your original page. DO NOT DO THIS. The validator - appropriately - validates the page with all the various included files already pulled into it. And the tidied file is that generated page. You want to keep your coding that actually includes the files, so DO NOT overwrite your main page.

Once you make sure that html tidied it in such a way so that it all works, you then can go through the "tidied" coding side by side with your coding and see how they corrected the errors. Some of the corrected errors might be in your main page and some in your included documents. You are most familiar with your content so you should be able to trouble shoot that.

added: I validate frequently as I "correct" coding as a fix early on will often cascade down and solve a lot of other errors.

Let me know if any of these techniques worked for you. Also will be interested if hearing if anyone has a shortcut method to do this.

Again, I am a rank amateur and you can weight my advice accordingly.

Webweaver

Last edited by weaver; 05-20-2010 at 07:26 PM.. Reason: Added information
weaver is offline   Reply With Quote
Old 05-21-2010, 01:11 AM   PM User | #4
Lori700698
New Coder

 
Join Date: May 2010
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Lori700698 has a little shameless behaviour in the past
Looks like a Java error..looking for an object. It's probably that sliding thing, I don't get the error in FF. Your going to flip but go back to where you got your Java codes for that thing, recopy and paste it. I bet you accidentally wiped something out.
PS, I think your page looks great! A few things show up shifted in FF, but the tables don't look stupid.

Ok, just checked in IE and it's absolutely a Java error, that's what's on line 42.

Sorry, my bad..JavaScript

Last edited by Lori700698; 05-21-2010 at 02:04 AM..
Lori700698 is offline   Reply With Quote
Old 05-21-2010, 01:39 AM   PM User | #5
VIPStephan
The fat guy next door


 
VIPStephan's Avatar
 
Join Date: Jan 2006
Location: Halle (Saale), Germany
Posts: 7,705
Thanks: 5
Thanked 876 Times in 851 Posts
VIPStephan is a jewel in the roughVIPStephan is a jewel in the roughVIPStephan is a jewel in the rough
Quote:
Originally Posted by Lori700698 View Post
Looks like a Java error..looking for an object. What's the website?
If at all then it’s a JavaScript error but it’s pretty certain that it’s not related to JS as the error doesn’t come up in other browsers’ JS consoles. And the statement that it’s looking for an object isn’t helping in any way either since that’s just as meaningless as the error message itself.

The original poster has mentioned the domain name of their site in the first sentence, by the way.
__________________
Don’t click this link!
VIPStephan is offline   Reply With Quote
Old 05-21-2010, 02:12 AM   PM User | #6
Lori700698
New Coder

 
Join Date: May 2010
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Lori700698 has a little shameless behaviour in the past
Well this is what's on line 42
Code:
<div id="top_menu"><td class="top_menuimage" align="middle"><a href="/"><img id="home" onMouseOver="MM_swapImage('home','','images/images_1/over_04.gif',1)" onMouseOut="MM_swapImgRestore()" alt="home" src="images/images_1/menu_04.gif" border="0"></a><a href="mortgage_center.php"><img id="mortgage_center" onMouseOver="MM_swapImage('mortgage_center','','images/images_1/over_06.gif',1)" onMouseOut="MM_swapImgRestore()" alt="mortgage center" src="images/images_1/menu_06.gif" border="0" width="129" height="37"></a><a href="rates.php"><img id="current_rates" onMouseOver="MM_swapImage('current_rates','','images/images_1/over_07.gif',1)" onMouseOut="MM_swapImgRestore()" alt="current rates" src="images/images_1/menu_07.gif" border="0" width="105" height="37"></a><a href="real_estate.php"><img id="real_estate_center" onMouseOver="MM_swapImage('real_estate_center','','images/images_1/over_08.gif',1)" onMouseOut="MM_swapImgRestore()" alt="real_estate_center" src="images/images_1/menu_08.gif" border="0" width="133" height="37"></a><a href="apply.php"><img id="apply" onMouseOver="MM_swapImage('apply','','images/images_1/over_09.gif',1)" onMouseOut="MM_swapImgRestore()" alt="apply" src="images/images_1/menu_09.gif" border="0" width="63" height="37"></a><a href="resources.php"><img id="resources" onMouseOver="MM_swapImage('resources','','images/images_1/over_10.gif',1)" onMouseOut="MM_swapImgRestore()" alt="resources" src="images/images_1/menu_10.gif" border="0" width="85" height="37"></a><a href="company.php"><img id="company" onMouseOver="MM_swapImage('company','','images/images_1/over_11.gif',1)" onMouseOut="MM_swapImgRestore()" alt="company" src="images/images_1/menu_11.gif" border="0" width="81" height="37"></a></td></div></tr>
Lori700698 is offline   Reply With Quote
Old 05-21-2010, 06:25 PM   PM User | #7
ILoveKnowledge
New Coder

 
Join Date: Mar 2010
Posts: 26
Thanks: 4
Thanked 0 Times in 0 Posts
ILoveKnowledge is an unknown quantity at this point
I got rid of those onMouseover/onMouseout tags and it seems like to fixed that annoying bug.

It is weird...you mention there are other errors but when I run the browser compatibility test on Dreamweaver CS5 as well as run the W3C Markup Validator....it gives me no errors or the HTML tidy won't clean up the error the validator gives but on Dreamweaver CS5 I don't see any browser compatibility problems and when I run the site, I don't see any errors or anything like that....why is that?

Thanks again for your help and I will try to solve the other little problems like you mentioned but again, for some reason I don't seem to be running into the errors you mentioned anywhere including checking for errors in Dreamweaver CS5...
ILoveKnowledge is offline   Reply With Quote
Old 05-22-2010, 12:28 PM   PM User | #8
VIPStephan
The fat guy next door


 
VIPStephan's Avatar
 
Join Date: Jan 2006
Location: Halle (Saale), Germany
Posts: 7,705
Thanks: 5
Thanked 876 Times in 851 Posts
VIPStephan is a jewel in the roughVIPStephan is a jewel in the roughVIPStephan is a jewel in the rough
http://validator.w3.org/check?verbos...om%2Findex.php
__________________
Don’t click this link!
VIPStephan is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 11:24 AM.


Advertisement
Log in to turn off these ads.