i bir tablo satır ile geçiş işlevi uygulamak çalışıyorum. Her şey IE8 dışında iyi gidiyor. I kullanılan script aşağıda verilmiştir.
<script src="jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#report tr:odd").addClass("odd");
$("#report tr:not(.odd)").hide();
$("#report tr:first-child").show();
$("#report tr.odd").click(function(){
$(this).next("tr").each(function (){ this.toggle()});
$(this).find(".arrow").toggleClass("up");
});
//$("#report").jExpand();
});
</script>
Biri bana yardım edin lütfen ..
Jessica