Jun 3 2009

single text input form submit in IE

The previous form submit issues with IE post has generated some conversation in the post comments. In the original post I looked at the situation where you have a form with just a single text input and a submit button. The conversation developed to look at the situation where you have a form just with a single text field, no submit button at all. I did some hacking and came up with a fix which I thought warranted a new post.

To lay things out, single text field, no submit button. Type into the field and simply hit ‘enter’ is what we’re going for… in IE

Read the rest of this entry »

Feb 13 2009

Form submit by enter key and Internet Explorer

Related: Submit Form when no submit button is present in IE

Ran into an (other) interesting Internet Explorer bug. Seems that if you have a form with only a single text input, hitting the enter button will not submit the form in IE.

Read the rest of this entry »

Aug 9 2006

Testing IE Conditional Comments in development

CSS rendering inconsistencies in the various versions of IE are a well known problem. IE’s proprietary Conditional Comments are really the best practice solution for addressing CSS issues in IE. Which makes the so called “stand alone” versions of IE an invaluable tool for testing CSS layouts. evolt provides a great collection of stand alone IE versions going back to version 3 (that’s further back than I care to think about). And with the release of IE7 looming in the not so distant future, it’s important to have a stand alone IE7 version in the arsenal as well.

The problem with all of these stand alone versions is that when they are installed along side a primary installation of IE6… they report their version as 6 and break the use of CC.

Today I was again dealing with the madness that is IE + CSS and decided to go looking around to see if there was anything new that others are doing to deal with IE sniffing. Amongst the new debates popping up around some slipping back into the taboo practices of javascript sniffers… I happened upon a comment in the IE7beta3 post that explains a simple way to fix IE CC for multiple “stand alone” versions with a quick registry key edit.

Open Regedit
Start -> Run -> Regedit

Find
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Version Vector

Rename the key there named IE to something like xIE

All stand alone versions now report their correct version, and IE Conditional Comments are restored to functionality! If nothing else, this makes Conditional Comments a little easier to work with. Though they are still cluttering up the top of my html pages. If only MicroSoft would have had the insight to implement this proprietary feature so the CC could live in the external style sheet instead of the html