Advertisement
Guest User

Javascript for category calendar

a guest
Jun 12th, 2012
397
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function get_calendar(year, month){
  2.     $.ajax({
  3.         url: site_url + 'the-calendar.php?the_year=' + year + "&the_month=" + month,
  4.         success: function(data) {
  5.             $('#the_calendar').html(data);
  6.         }
  7.     });
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement