My Pages Dont Work In I.E ???? Can Anyone Help

This is a discussion on "My Pages Dont Work In I.E ???? Can Anyone Help" within the Web Page Design section. This forum, and the thread "My Pages Dont Work In I.E ???? Can Anyone Help are both part of the Design Your Website category.


 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices




Reply
 
LinkBack Thread Tools
  #1  
Old Sep 30th, 2007, 10:00
New Member
Join Date: Sep 2007
Location: London
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
My Pages Dont Work In I.E ???? Can Anyone Help

Good morning all - can someone help me out on this one please. The following link "as with several others " http://www.justtheonewebsite.co.uk/l..._shopping.html works in Firefox but doesnt work in IE?? and I cant for the life of me work out why. When I view source in IE it shows the page code but in the browser its completely blank. Also when you click on Go To Offer it opens 2 of the same pages in Firefox.

Your help is appreciated
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

  #2  
Old Sep 30th, 2007, 10:19
Jack Franklin's Avatar
Moderator

SuperMember
Join Date: May 2007
Location: Cornwall, England
Posts: 1,405
Blog Entries: 8
Thanks: 18
Thanked 14 Times in 14 Posts
Re: My Pages Dont Work In I.E ???? Can Anyone Help

Well so fair I have established that it is nothing in the <body> section, as I deleted that and still getting nothing. (Testing it locally).

edit: Found the problem.

You have:
Code: Select all
<title>Sexy La Senza Lingerie<title>
And it should be:
Code: Select all
<title>Sexy La Senza Lingerie</title>
Now it is displaying for me in IE7. Also-check your meta tags, one of them had some tags missing:
Code: Select all
<meta name="description" content="Buy 2 Bras for £15. Free short or thong when you buy the matching bra"
Should be:
Code: Select all
<meta name="description" content="Buy 2 Bras for £15. Free short or thong when you buy the matching bra">
So it should work now.

But can I suggest redesigning your site using css? The code was immensly tough to follow with tables, td, tr everywhere!

And is that much javascript really neccessary?

anyway, I fixed your 1st problem
hth

jack
__________________
Jack Franklin - Webforumz Moderator
(x)HTML | CSS | PHP | MySQL | JQuery (Javascript)
Contact: My Blog | Twitter | Delicious
Want Lessons? PM me.
If you think I've helped, please press the 'Thanks' Button.
Last Blog Entry: A Week with VBulletin (Aug 28th, 2008)

Last edited by Jack Franklin; Sep 30th, 2007 at 10:22.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old Sep 30th, 2007, 10:47
New Member
Join Date: Sep 2007
Location: London
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Re: My Pages Dont Work In I.E ???? Can Anyone Help

jackfranklin - a few words for you, YOU the man. thanks for the help on that one - its now been corrected and works in IE. Im in the process of looking for a new webdesigner as my previous one wasnt as good as he maintained he was "hence the td and tr everywhere etc".
Just noticed that the Go To Offer Button in IE doesnt work either??
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old Sep 30th, 2007, 11:22
Jack Franklin's Avatar
Moderator

SuperMember
Join Date: May 2007
Location: Cornwall, England
Posts: 1,405
Blog Entries: 8
Thanks: 18
Thanked 14 Times in 14 Posts
Re: My Pages Dont Work In I.E ???? Can Anyone Help

Well I'm on form today

Your current code:
Code: Select all
<a target="_blank" href="<A href="http://www.lasenza.co.uk/index.asp?affid=102&utm_id=102&network=paidonresults"><input">http://www.lasenza.co.uk/index.asp?affid=102&utm_id=102&network=paidonresults"><input type="submit" name="Submit" value="Go To Offer">
New code:
Code: Select all
<a target="_blank" href="<A href="http://www.lasenza.co.uk/index.asp?affid=102&utm_id=102&network=paidonresults"><input">http://www.lasenza.co.uk/index.asp?affid=102&utm_id=102&network=paidonresults"><input type="submit" name="Submit" value="Go To Offer" onClick="MM_goToURL('parent','http://www.lasenza.co.uk/index.asp?affid=102&utm_id=102&network=paidonresults');return document.MM_returnValue">


Jack
__________________
Jack Franklin - Webforumz Moderator
(x)HTML | CSS | PHP | MySQL | JQuery (Javascript)
Contact: My Blog | Twitter | Delicious
Want Lessons? PM me.
If you think I've helped, please press the 'Thanks' Button.
Last Blog Entry: A Week with VBulletin (Aug 28th, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old Sep 30th, 2007, 11:40
New Member
Join Date: Sep 2007
Location: London
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Re: My Pages Dont Work In I.E ???? Can Anyone Help

Copy and pasted jack - that didnt quite work
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6  
Old Sep 30th, 2007, 11:52
Marc's Avatar
Staff Manager

SuperMember
Join Date: Apr 2007
Location: Scotland, UK
Posts: 1,780
Thanks: 0
Thanked 16 Times in 16 Posts
Re: My Pages Dont Work In I.E ???? Can Anyone Help

try:

Code: Select all
<a target="_blank" href="http://www.lasenza.co.uk/index.asp?affid=102&utm_id=102&network=paidonresults"><input">http://www.lasenza.co.uk/index.asp?affid=102&utm_id=102&network=paidonresults"><input type="submit" name="Submit" value="Go To Offer" onClick="MM_goToURL('parent','http://www.lasenza.co.uk/index.asp?affid=102&utm_id=102&network=paidonresults');return document.MM_returnValue">
__________________
Marc
Staff Manager - Webforumz.com


Want to be a moderator? PM me.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #7  
Old Sep 30th, 2007, 11:52
Jack Franklin's Avatar
Moderator

SuperMember
Join Date: May 2007
Location: Cornwall, England
Posts: 1,405
Blog Entries: 8
Thanks: 18
Thanked 14 Times in 14 Posts
Re: My Pages Dont Work In I.E ???? Can Anyone Help

Hmm. I think you have pasted slightly wrong or left some code there, it did work for me.
Try deleting all the code that was there and now paste this in:
Code: Select all
<input type="submit" name="Submit" value="Go To Offer" onClick="MM_goToURL('parent','http://www.lasenza.co.uk/index.asp?affid=102&utm_id=102&network=paidonresults');return document.MM_returnValue
Try that (fingers crossed)

Jack
__________________
Jack Franklin - Webforumz Moderator
(x)HTML | CSS | PHP | MySQL | JQuery (Javascript)
Contact: My Blog | Twitter | Delicious
Want Lessons? PM me.
If you think I've helped, please press the 'Thanks' Button.
Last Blog Entry: A Week with VBulletin (Aug 28th, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8  
Old Sep 30th, 2007, 12:31
New Member
Join Date: Sep 2007
Location: London
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Re: My Pages Dont Work In I.E ???? Can Anyone Help

Thanks for the code Marc - just copied and pasted it but it has come out as you can see on the page
Jack just tried yours but when you click on the Go To Button offer nothing happens

Thanks for your continued help on this one guys I really appreciate it
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #9  
Old Sep 30th, 2007, 13:20
Jack Franklin's Avatar
Moderator

SuperMember
Join Date: May 2007
Location: Cornwall, England
Posts: 1,405
Blog Entries: 8
Thanks: 18
Thanked 14 Times in 14 Posts
Re: My Pages Dont Work In I.E ???? Can Anyone Help

Um.

Code: Select all
<input type="submit" name="Submit" value="Go To Offer" onClick="MM_goToURL('parent','http://www.lasenza.co.uk/index.asp?affid=102&utm_id=102&network=paidonresults');return document.MM_returnValue">

Or -if you got rid of the button and made it just text you could just use
Code: Select all
<a href="link.html">Go to Offers!</a>
hth

Jack
__________________
Jack Franklin - Webforumz Moderator
(x)HTML | CSS | PHP | MySQL | JQuery (Javascript)
Contact: My Blog | Twitter | Delicious
Want Lessons? PM me.
If you think I've helped, please press the 'Thanks' Button.
Last Blog Entry: A Week with VBulletin (Aug 28th, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #10  
Old Sep 30th, 2007, 13:35
New Member
Join Date: Sep 2007
Location: London
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Re: My Pages Dont Work In I.E ???? Can Anyone Help

It looks better having the button there Jack - just tried the 1st code, still doesnt work. You think im flogging a dead horse here?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #11  
Old Sep 30th, 2007, 13:38
Jack Franklin's Avatar
Moderator

SuperMember
Join Date: May 2007
Location: Cornwall, England
Posts: 1,405
Blog Entries: 8
Thanks: 18
Thanked 14 Times in 14 Posts
Re: My Pages Dont Work In I.E ???? Can Anyone Help

Are you sure you copied the code correctly?

It worked for me.

It's weird. What browser are you using?

Jack
__________________
Jack Franklin - Webforumz Moderator
(x)HTML | CSS | PHP | MySQL | JQuery (Javascript)
Contact: My Blog | Twitter | Delicious
Want Lessons? PM me.
If you think I've helped, please press the 'Thanks' Button.
Last Blog Entry: A Week with VBulletin (Aug 28th, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #12  
Old Sep 30th, 2007, 14:59
New Member
Join Date: Sep 2007
Location: London
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Re: My Pages Dont Work In I.E ???? Can Anyone Help

This is what i have used jack
<p>Buy 2 Bras for £15. Free short or thong when you buy the matching bra - Free Gift Box For All Orders

<p><input type="submit" name="Submit" value="Go To Offer" onClick="MM_goToURL('parent','http://www.lasenza.co.uk/index.asp?affid=102&utm_id=102&network=paidonresul ts');return document.MM_returnValue">
</tr>

and im using Firefox and IE 7
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #13  
Old Sep 30th, 2007, 15:18
Marc's Avatar
Staff Manager

SuperMember
Join Date: Apr 2007
Location: Scotland, UK
Posts: 1,780
Thanks: 0
Thanked 16 Times in 16 Posts
Re: My Pages Dont Work In I.E ???? Can Anyone Help

Oh... I just thought there was an error with that piece of code so i corrected it! Sorry.
__________________
Marc
Staff Manager - Webforumz.com


Want to be a moderator? PM me.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #14  
Old Sep 30th, 2007, 15:23
Most Reputable Member
Join Date: May 2007
Location: UK
Age: 27
Posts: 1,111
Thanks: 0
Thanked 0 Times in 0 Posts
Re: My Pages Dont Work In I.E ???? Can Anyone Help

Quote:
Originally Posted by jackfranklin View Post
Well so fair I have established that it is nothing in the <body> section, as I deleted that and still getting nothing. (Testing it locally).
I admire your generous helping of others, but you could discover such errors much more quickly by validating the code.

I can find errors like this in seconds by using HTML validator for firefox.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #15  
Old Sep 30th, 2007, 15:33
Marc's Avatar
Staff Manager

SuperMember
Join Date: Apr 2007
Location: Scotland, UK
Posts: 1,780
Thanks: 0
Thanked 16 Times in 16 Posts
Re: My Pages Dont Work In I.E ???? Can Anyone Help

Nice add-on Mike!
__________________
Marc
Staff Manager - Webforumz.com


Want to be a moderator? PM me.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Thread Tools

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
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Javascript menu - does not work on title page, but does work on other pages Crystal Phoenix Starting Out 4 Mar 24th, 2008 19:40
Javascript - Updating web pages with snippets from other pages Ydot JavaScript Forum 3 Jul 10th, 2007 14:38
Scripting Needed(adding pages to pages) Amari Classic ASP 1 Sep 4th, 2004 18:06


All times are GMT. The time now is 21:30.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8