if you want something done right… DIY.

meanderings of a computer scientist on the brink of sheer insanity.

say what?
‘The proposed default behavior for version targeting in Internet Explorer solves the problem of “breaking the web” in much the same way that decapitation solves the problem of headaches.’
README

recently, i could not for the life of me determine why two strings that should have compared as being equal simply refused to do so… that is, until i set up an alert box to display the underlying comparison character-by-character.
you’ll get different output from this script depending on whether you are viewing it from […]

<?php $ie5 = eregi(”MSIE [567]{1}”,$_SERVER[’HTTP_USER_AGENT’]) != 0; ?>
<select name=”sel” on<?php print($ie5 ? ‘property’ : ”); ?>change=”func();” onkeyup=”func();”>

i won’t repeat why we must do these things. that was the purpose of the post just prior to this one. i would recommend reading it if you haven’t already.

1. selectively use onpropertychange in <select>’s, and add onkeyup

go to: http://krisgale.com/select-fixed.html
this is the source code from the above…

<html>
<head>
<title>select</title>
<script type="text/javascript">
function selectchange()
{ var frm […]