开发者

Javascript conflict causing page not to display in ie

开发者 https://www.devze.com 2023-01-21 00:48 出处:网络
The following page will not display in ie. http://开发者_开发百科dl.dropbox.com/u/6957663/muchWorth.html

The following page will not display in ie. http://开发者_开发百科dl.dropbox.com/u/6957663/muchWorth.html

I believe it has to do with the javasscript I implemented but I'm not sure.

Is there some file encoding I am missing?

I am on ubuntu linux in gedit.


The <title> tag is not closed properly in the header. You used </h1>.

While we're looking at the code, you may also want to use

  • <style type='text/css'>
  • <script type='text/javascript'>

to clarify those elements of the HTML.

// EDIT

Incidentally, to find this diagnosis quickly, I

  • Commented out all Javascript, didn't work
  • Commented out all CSS, didn't work
  • Started at the top looking for strange-ness, and there it was.

I'd recommend doing that next time this comes up. :)

0

精彩评论

暂无评论...
验证码 换一张
取 消