dclowd9901
dclowd9901

Reputation: 6836

I've finally done it. I've created a web page that IE7 will crash when trying to open

http://www.ddrewdesign.com/portfolio/

I've run that on three different VMs and my brother's regular (and very adequate) beige box, and it crashes every one of them.

Anyone know what I might be doing wrong? I suspect it's a client-side issue, because the page loads fine in every other browser I've tested it in. I've already tried disabling all the js on the page.

Any ideas?

P.S. I know it looks like crap in IE, which is why I was in the middle of testing it.

Upvotes: 2

Views: 122

Answers (2)

Kerido
Kerido

Reputation: 2940

I guess, it's a lot more difficult to write a page that looks and works equally well in all modern browsers.

Upvotes: 0

N 1.1
N 1.1

Reputation: 12534

Basically, you have lots of markup errors. IE crashes because its not tolerant like others.

For e.g. in many places, you have closed <a> twice. (see below, you closed before and after <li>)

<a href="/images/samples/print/bam1_3.png" rel="print[bam1]" class="lightwindow" caption="Broker Agent Magazine Cover Feature"  /><li>Broker Agent Magazine Cover Feature</li></a>

Upvotes: 2

Related Questions