Some thoughts on Internet Explorer 7 Nov08 '06

Here are some initial things I've noticed about Internet Explorer 7, from a development perspective. Some things are good; some bad.

Shift + Refresh

Shift + Refresh doesn't seem to completely clear the cache. Often I'll be working on a certain page, and refreshing it in the browser to view the saved changes. If I change the HTML or "server processing" (ASP, PHP) for the page, the changes are reflected. However, if I change the JavaScript associated with the page, the changes do not come across. I end up having to close the browser completely, and re-open it.

What option?

Through JavaScript, IE still doesn't recognize an <option> element without a value attribute:

<select id="myList">

    <option>My Value</option>

</select>

In JavaScript, if I try to issue this statement:

var myListValue = document.getElementById("myList").value;

... IE won't recognize the value of "My Value." However, Firefox sees it fine.

In order for IE to recognize the value of the option, the value attribute must be set:

<select id="myList">

    <option value="My Value">My Value</option>

</select>

This is common practice anyway, but often I forget to include the value attribute.

View Source

Choosing "View Source" no longer forces the text file open in my default text editor. Rather, it now opens in Notepad. I'm sure this is some setting that can be changed somewhere, but I don't think I want to change it now. I prefer the light-weight Notepad for a quick View Source.

Custom search engine

"Create Your Own" custom search tool was extremely quick and easy.

All you need to provide is the URL, and a name.

I use the following URL for a custom search of this blog:

http://www.matthom.com/search?q=TEST

I don't prefer searching in this manner (I prefer keyword searches in Firefox), but it's nice to know it's easy to set up a custom search, based on your own web sites.

Categories: Browsers , Internet Explorer

Add Feedback (view all)

Leave feedback

Feedback

Input format: The editor controls below will assist with Markdown syntax.

Status

Sub-status

Your info

If you'd like a quick loading text editor try notepad . ... Read more.

matthom is published and produced by Matt Thommes - an independent publishing enthusiast, mobile blogger, content creator, informative writer, web developer from a suburb of Chicago. Never one to conform, Matt intends to promote the effect the web has on our lives, in an effort to intensify, instruct, and clarify all that is happening around us.

Contact Matt

Popular Pages

  1. Fast rounded corners in Photoshop (5683 recent visits)
  2. PHP – passing variables across pages (2086 recent visits)
  3. JavaScript set selected on load (1741 recent visits)
  4. Removing all child nodes from an element (1210 recent visits)
  5. iPod songs out of order? (1013 recent visits)
  6. Firefox 3 smart address bar: wildcard search (916 recent visits)
  7. Britney - Everytime piano tab (879 recent visits)
  8. MySQL LEFT JOIN syntax (731 recent visits)
  9. Breathe Me - Sia (661 recent visits)
  10. Tumblr: how blogging should be (549 recent visits)

Similar Entries

Stats

13 unique visits since August 2008

Syndicate

Advertisements