It might be a beginner question but I can\'t understand why the onchange event is never called by IE while it works Ok with firefox.
ohhh, I spent some time on that issue as well months ago. I came up with this solution for FF/IE onchange
$("input[name*='delivery_method']").bind(($.browser.msie ? "click" : "change"), function() { //your code here });