問題があります: jQuery datepicker を使用しており、日曜日と土曜日のすべてのセルを赤で色付けしたいのですが、そうすることができません..
これが私がやったことです:
<script>
var te=jQuery('div[id$=datepicker]');
$(function() {
te.datepicker({ autoSize: true,prevText: "Previous ",nextText: " Next" });
te.datepicker('option', 'onSelect', function() { callfromdate(); } );
var temper=jQuery('#calRow1 tr');
temper.css('something');
});
</script>