Developer-specific resources include:
MSDN IE Development Forums <=post such questions here instead
http://social.msdn.microsoft.com/for...iedevelopment/
IE Developer Center
http://msdn.microsoft.com/en-us/ie/default.aspx
Learn IE8
http://msdn.microsoft.com/en-us/ie/aa740473.aspx
HTML and DHTML Overviews and Tutorials
http://msdn.microsoft.com/en-us/library/ms537623.aspx and
Cascading Style Sheets (CSS)
http://msdn2.microsoft.com/en-us/ie/aa740476.aspx
Expression Web SuperPreview for Internet Explorer (free, stand-alone visual
debugging tool for IE6, IE7, and IE8)
http://www.microsoft.com/downloads/d...b-dccff3fae677
Expression Web SuperPreview Release Notes
http://www.microsoft.com/expression/...easeNotes.aspx
Validators:
http://validator.w3.org/
http://jigsaw.w3.org/css-validator/
David wrote:
> IE8 will consistantly crash on a page that contains 10,000 checkboxes only
> if it is in a frameset. It works fine in IE7.
>
> Place the following code in an asp.net vb page and put that page in a
> frameset. It will crash.
>
> Dim i As Integer
> For i = 1 To 11000
> Response.Write("<br><input type='checkbox' name='cb" & i & "' value='1'
> />
> My CB" & i & "<br>")
> Next