Fixed Bug: Internet Exploror 6.0 incompatibilities during page edits

A few annoyances when editing pages with Windows XP Internet Explorer 6.0:

Bil

Blimey. I’ll track down a windows box and have a play. The variation between browsers never ceases to amaze me. Thanks—tamc2 Please don’t thank me for IE! ;)—Bil

Ok, New html tag of the day is <fieldset>. Putting <fieldset>..</fieldset> around the text area solves the text box resize problem.

The source of the cursor jumping and the copy and paste problem appears to be the

onclick="this.value=this.value.replace('Type what you want here and click save','')"

line in views/Page_edit.rhtml. Replacing it with:

onfocus="if( this.value == 'Type what you want here and click save' ) { this.value = '' }"

Solves the problem. It seems that IE forgets the cursor position if any mutators are called on the text value.

tamc2

Fixed in v0-0-7

Edit this page or watch for changes using RSS.