2011-04-07 01:52:01 -07:00
|
|
|
$(function() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$(".year").click(function() {
|
2011-05-11 23:39:39 -07:00
|
|
|
var thisYear = $(this).attr('id');
|
|
|
|
|
//alert(thisYear);
|
|
|
|
|
|
2011-04-07 01:52:01 -07:00
|
|
|
$.get('/jobs/viewReport/'+thisYear, function(data) {
|
|
|
|
|
$("#reports").html(data);
|
|
|
|
|
});
|
2011-05-11 23:39:39 -07:00
|
|
|
|
2011-04-07 01:52:01 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$(".month").click(function() {
|
|
|
|
|
var thisMonth = $(this).html();
|
|
|
|
|
var thisYear = $(this).parents('.monthList').attr('id');
|
|
|
|
|
|
|
|
|
|
$.get('/jobs/viewReport/'+thisYear+'/'+thisMonth, function(data) {
|
|
|
|
|
$("#reports").html(data);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|