Open GoogleCodeExporter opened 8 years ago
I'm also having the same problem with IE8 and below only.
Did you happen find a solution?
Original comment by fromouto...@gmail.com
on 12 Jun 2013 at 4:15
Yes I managed to get a fix for it, this issue was with it was the .append it
used to build up the checkbox options and labels
I changed the following and this fixed the issue for me:
$('#radios').append(('<label style="margin-right:5px;display:block;"><input
type="checkbox" style="margin-right:3px" value="{0}"/>{1}</label>').format(tag,
tag));
To:
var checkString = '';
checkboxItemString = '<label style="margin-right:5px;display:block;"><input
type="checkbox" style="margin-right:3px" value="{0}"/>{1}</label>'
var div = document.getElementById("radios");
var content = div.innerHTML;
div.innerHTML = content + checkboxItemString;
});
Original comment by adamhann...@googlemail.com
on 13 Jun 2013 at 2:59
Original issue reported on code.google.com by
adamhann...@googlemail.com
on 23 May 2013 at 9:10Attachments: