Appently IE9 doesn’t like most good java scripts. is there a way to convert:
<script type='text/javascript'>
function slideonlyone(thechosenone) {
$('.newboxes2').each(function(index) {
if ($(this).attr("id") == thechosenone) {
$(this).slideDown(200);
}
else {
$(this).slideUp(600);
}
});
}
</script>
to a java script compatible with IE9