IE "live"/"change" workaround?!

IE "live"/"change" workaround?!

One gentleman on the "live" page of the jQuery docs suggested the following workaround code in order to get change() to work in IE:
  1. $(element).change(function() { doChange(); }).attr("onchange", function() { doChange();});
I am not familiar with doChange and whether I apply this suggestion correctly for:

  1. $(".foo").live("click", function() {
  2. $(this).do something;
  3. });
Could anybody give me a hint or has anybody experience how to solve the "change" issue with IE?