Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function GetEvents(year,month){
- /* sample call for data
- * events_data_source.php taking two parameters year and month should generate json with events
- */
- $.post("events_data_source.php", { year: year, month: month }).done(function(data) {
- return data;
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment