HTML - Error On Page
The onlookers see most clearly.
Thanks! Code: <head> <script type="text/javascript"> var dur = new Array(501); dur[0] = 128; dur[1] = 32; dur[2] = 32; dur[3] = 32; dur[4] = 32; dur[5] = 32; .... dur[498] = 32; dur[499] = 32; dur[500] = 32; function show(color) { for (var i=0;i<500;++i) { var obj = document.getElementById("wiki"+i); if (dur[i] <300) { obj.style.color = 'color'; } } </script> </head> <body class="mediawiki ns-0 ltr page-Cyber"> <form name="myform1"> <p><input type="button" value="Display less 10 days" onClick="show(red)"></p> </form> <form name="myform2"> <p><input type="button" value="Display less 30 days" onClick="show(yellow)"></p> </form> <div id="wiki439" id="globalWrapper"> <div id="wiki130" id="column-content"> <div id="wiki17" id="content"> Similar TutorialsHi Guys, This is a really minor task but i cant seem to get rid of the page error on my homepage. If you go here http://www.pspwallpaper.co.uk/ then say click 'affiliates' and then hit the back button to the homepage it runs a error. Page error. If some1 could take a quick look and help me out. It might be just tiredness on my part i have been workin 3hours on new homepage and have no energy now lol. Any help gratefull. Regards, WhiteKnight Hi, i have recently made some changes to my contact page and now whenever i upload the new and also try the old unchanged page my contact form is all over the place. http://www.peacefullandscapes.com.au/contact_us.html note the submit button has gone and the white background is a mess please help!! thanks ive seen it done on other sites and was wondering how you would go about changing the look of your 404 error page. any help is welcomed. thanks in advance, ascskate Edit: damnit i screwed up the thread name. supposed to read changing 404 error page Go to the web page: http://YourCarThings.com and then select "About Us" from the Top Menu. When you go to the "AboutUs" page, you will receive the error: "Done, but with errors" I caused this by replacing the: jumpmenu Java Script Go to any of the other pages, and you won't get the error message because they use the previous jumpmenu javascript. Please advise. Thanks. Doug Walker See attached file I get this error in IE when my page has passed W3C CSS and XHTML and HTML tidy can anyone help rectify it!? Cheers, Mas Quote: Webpage Script Errors User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30) Timestamp: Wed, 12 Nov 2008 17:53:00 UTC Message: 'fdiv' is undefined Line: 2 Char: 2232 Code: 0 URI: http://www.colletts.co.uk/js/ActiveContentDropDown2.js Hi all and thank you to whomever can help me . I am new to this code stuff so thank you for bearing with me. I should add that I hope I am in the right folder.... On my blog http://www.rozpearcy.com I have an opt-in box on the right side. After people put in their information it is supposed to redirect to http://www.rozpearcy.com/thank-you. I have been told by my autoresponder company that it is the script that needs to adjusted. Right now I have an opt in box that I hate, I just want a simple name and email field with a submit button. This is the code they give me so that after someone submits their info they can receive my autoresponder emails: <form action="http://www.getresponse.com/cgi-bin/add.cgi" method="post" accept-charset="UTF-8"><label for="subscriber_name">Name :</label><input id="subscriber_name" name="subscriber_name" type="text" value="" /><br/><label for="subscriber_email">Email :</label><input id="subscriber_email" name="subscriber_email" type="text" value="" /><br/><input type="submit" /><input type="hidden" name="error_url" id="error_url" value=""/> <input type="hidden" name="confirmation_url" id="confirmation_url" value="http://www.rozpearcy.com/thank-you/"/> <input type="hidden" name="campaign_name" id="campaign_name" value="rozpearcy"/><input type="hidden" name="custom_ref" id="custom_ref" value=""/></form><script type="text/javascript">var el=document.getElementById("custom_http_referer");if(el != null){el.value = document.location};</script> The part in red is what I believe to be in question...my hosting company said that instead of it saying confirmation_url it should say redirect...however I don't know how to write it and the hosting company said they couldn't help with scripting issues. My blog is through wordpress if that helps...if you need any other details it would be much appreciated . Hi: I hope someone out there can help me. My son and daughter created a website for me and now I have taken it over. I have been desperately trying to figure out why it doesn't come up in the search engines. Yesterday while working on the website, I decided to try a page rank checker and received the following message: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/rankthi1/public_html/tools/nusoap.php on line 2264 As far as I can tell, there isn't a line 2264 (I counted them). I'm unfamiliar with php. Any guidance, would be greatly appreciated. Thanks in advance, Vicki My page loads correctly, but when I open a new tab in IE7 so the tab bar appears, my page shifts to the left, and the menu overlaps/ obscures parts of the images. I can't find a reason why this happens, can anyone help? A screenshot of the error can be found below: http://www.onetopsoccer.com/error.jpg The page itself is at http://www.onetopsoccer.com/index.shtml hello, I'm working on a site with a lengthy online application. When a user begins the application he is told to use the back and forward buttons on our form (not on his browser). We find that users still accidentally use the browser buttons and when they do a "Webpage has expired" error page comes up. This error page is not part of our site and is a dead end. I'm not a programmer so I don't know the specifics. I take it as a given that that browser buttons cannot function normally in our application, but I'd like to know if there is a way to get control of the error page that comes up when users do click their browser buttons. If we can show them a page reminding them not to use the browser buttons and put a link there to get them back to the application it would be a big help. Thanks Code: Parse error: syntax error, unexpected T_DNUMBER in /home/a6989956/public_html/include/database.php on line 24 Can anyone please tell me whats wrong? Here is line a few lines Code: class MySQLDB { var $connection; //The MySQL database connection var $num_active_users; //Number of active users viewing site var $num_active_guests; //Number of active guests viewing site var $num_members; //Number of signed-up users /* Note: call getNumMembers() to access $num_members! */ /* Class constructor */ function MySQLDB(){ /* Make connection to database */ $this->connection = mysql_connect(hostname, username, ********) or die(mysql_error()); mysql_select_db(database, $this->connection) or die(mysql_error()); /** * Only query database to find out number of members * when getNumMembers() is called for the first time, * until then, default value set. */ $this->num_members = -1; if(TRACK_VISITORS){ /* Calculate number of users at site */ $this->calcNumActiveUsers(); /* Calculate number of guests at site */ $this->calcNumActiveGuests(); } } line 24-25 is Code: $this->connection = mysql_connect(hostname, username, ********) or die(mysql_error()); mysql_select_db(database, $this->connection) or die(mysql_error()); PLEASE HELP! Hi, Background: I have a small page that need to be embeded into a bounch of other html pages. Help needed: 1. Please provide the html chunk that I can use to embed the small page in to other html pages. 2. Is there a way of not using iframe? Can I use <Object> or <embed>? How? --------------------------- mba colleges in london hospitality management diploma Some mouses today have horizontal scroll, some call the tilt. It looks something like: http://www.htmlforums.com/attachment...1&d=1242556560 I noticed that many websites they code those horizontal scroll to go to next/prevous page. For example Discuz! forum system has this function. While you browse hundreds or thousands of posts separated into pages, the horizontal scroll can take you to previous page or next page.(not browser back/forward) How do I code like that? Or any examples? Below are the two sites I will use to explain my problem. For reference, I used Mozilla Firefox 3.08 and Google Chrome 1.0.154.53 in my tests. Example 1: http://www.irishbyname.com/example1.htm Example 2: http://www.irishbyname.com/example2.htm When browsing the site in a browser other than Internet Explorer, example 1 and example 2 center to different locations on the page. In example 1, I set the height of the content area to be 200 px tall. In example 2, I set the height of the content area to be 500 px tall. When I have example 1 open in one tab and example 2 open in another, I can alternate between the two tabs and see a visual difference in alignment. The HTML code on both pages is exactly identical with the exception of the height of the content area. Can anyone tell me why the horizontal page center changes based on the height of the page? Can anyone tell me how to change my HTML to make certain the page centers correctly no matter how tall the page is? Thanks for your help in advance. I believe in thread titles that get to the point. I have a basic page, when the page loads I want people to see the top of the page for a few seconds while a flash starts to load but then I want the page to scroll down a bit so the visitor can see the flash load progress status. I just want code that I can copy into my page. I don't have access to the flash code. Greg (the page under design) www.mytcanada.com/designer.html I have a programmer in the US who starts pages for me and then I much around with them until it's looks like I want. He helps me when I get stuck but he's on holidays. Any help would be great. Hello; I have text box & submit button in page_1 & I have text box & submit button in page_2. I want when write text in text box in page_1 it go directly to text box in page_2 & I want when click on submit button in page_1 it is like click on submit button in page_2. Assume page_2 located in other site www.page_2.com. How to do that.?? Not even sure what to call this actually... I received this message from a friend whose site I just put up. ---------------------------- When you click on say the Home Page, and then you click on something else then go back to the prvious page, it apparently displays the previous page on the home page for example. I was not able to recreate this on my computer, but apparently, [another] web developer said this is a fairly common problem. Do you know what he is referring to, and can it be fixed? ---------------------------- Here's the site in question. Nothing fancy, just individual HTML pages. http://www.soundadviceht.com/index.html I gotta admit, I have no earthly clue what he's talking about, unless he's relaying the message wrong? Any ideas what he's talking about? I have plain HTML on the main page and <iFrame> tag on it, inside tag i have URL to other page that using some script that forces host page to reload and show page from frame instead of it. Can i somehow stop it from messing my entire main page? Hello, I've put the Code: <div align="center"> below the Code: <body> tag and closed it with the Code: </div> before the Code: </body> tag. The page doesn't center at all. Is looking fine in 1024x768 but in any bigger resolution, the page is aligned to the left. The page that I am talking for is this. Any idea? Hey all, me and my friend have a cleaning company and we deciced to make a webpage. It's been a good 6 years since i have worked on a website. My biggest accomplishment so far was getting the contact form to work properly on the site. It does, i feel like i've done alot lol. Anyway, the current design is a rough layout (suggestions are welcome). It still needs a lot of little touches to make it look more "full". My biggest concern now is when your clicking from page to page the table jumps around. In firefox, the Contact Us and Services page are perfect, nice and centered. The image i'm using where the navigation buttons are is in place as well. When you go to the other pages though the table moves a bit and it looks like the image i'm using where the navigation buttons are starts to repeat. In Internet Exploder, everything doesn't look centered. There seems to be more space on the right than on the left, but the image i'm using for the navigation buttons seems to be fine, it's not repeating. I dunno what's causing this. I know different browsers display stuff in different ways but i'm far from having a good understanding as to why (that's why i'm here). I even copied txt from one of the messed up pages and pasted it on one of the pages that is ok and that didn't work. I assume it's a CSS thing. Also, try and avoid saying things like "Table designs are for teh n00bz!11!" or "This is why CSS is better than using a table design!!!". This is how i did it. Im ok with CSS but i don't have a thorough understanding of it to design an entire website using CSS. I'm hoping this is an easy CSS fix, or maybe something else? The website is www.gocleantoday.com. Thanks. |