Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function get_calendar(year, month){
- $.ajax({
- url: site_url + 'the-calendar.php?the_year=' + year + "&the_month=" + month,
- success: function(data) {
- $('#the_calendar').html(data);
- }
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement