This is my javascript function. Its nested in a document.ready fuction()
$(".bim").change(function() {
var str = "";
$("input:checked").each(function() {
str += $(this).next().text() + "_";
});
str = str.substr(0, str.length - 1);
alert(str);
});
It works fine in Firefox and Chrome.
It DOES NOT work with IE8 and IE6
I'm very new to javascript and help would be much appreciated