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
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.
- Recorded song - Thin Air by Pearl Jam
- New Gmail features causing me to yawn
- Your reunion is always happening
Popular Pages
- Fast rounded corners in Photoshop (5683 recent visits)
- PHP – passing variables across pages (2086 recent visits)
- JavaScript set selected on load (1741 recent visits)
- Removing all child nodes from an element (1210 recent visits)
- iPod songs out of order? (1013 recent visits)
- Firefox 3 smart address bar: wildcard search (916 recent visits)
- Britney - Everytime piano tab (879 recent visits)
- MySQL LEFT JOIN syntax (731 recent visits)
- Breathe Me - Sia (661 recent visits)
- Tumblr: how blogging should be (549 recent visits)
Similar Entries
- Using the Apple store as an internet cafe (3 recent visits)
- OpenDNS for reliable internet access (11 recent visits)
- Offline internet access still not practical for most (0 recent visits)
- The next killer internet app? Hardly... (0 recent visits)
- Initial thoughts on Nightcrawler, by Pete Yorn (3 recent visits)
- The internet in 40 years (0 recent visits)
Stats
13 unique visits since August 2008
Recent Referrers (click)
- Internet Explorer 7 view source
- i want to change internet explorer pages
- custom search engine internet explorer javascript
- custom search engine internet explorer javascript
- javascript option[i].value ie7
- javascript option[i].value ie7
- option statement ie7
- <optinon>. value. IE7
- option value javascript "internet explorer"
- javascript change element value IE7
- php refresh ie7
- change associated view source program IE7
- javascript option node remove IE7
- Internet Explorer 7 view source
- i want to change internet explorer pages
- custom search engine internet explorer javascript
- custom search engine internet explorer javascript
- javascript option[i].value ie7
- javascript option[i].value ie7
If you'd like a quick loading text editor try notepad . ... Read more.