1.0.21 • Published 7 years ago

jquery-callback-calendar v1.0.21

Weekly downloads
3
License
GPL-3.0
Repository
github
Last release
7 years ago

jQuery Callback Calendar

This is a simple calendar with the ability to tie callbacks to dates. It includes a header, Month YYYY and previous and next navigation.

You add events ( days ) to it using either a string "Month-dd-yyyy" or a Date object, and then pass it a callback funciton. When a user clicks on that day it runs the callback.

Running Example:

http://flynndev.us/projects/jquery-calendar/

Usage

    // Initialize Calendar

    $('.calendar').calendar({ ...options });

    // Tie Click event to calendar day

    $('.calendar').addEvent( "March-19-2017", function(){ alert("test"); } );
    $('.calendar').addEvent( new Date(2017, 2, 25), function(){ alert("test of date object"); } );

Options

OptionDescriptionDefault Value
monthMonth Shown on Calendar; a number between 0 and 11new Date().getMonth() // Dynamic Current Month
yearYear Shown on Calendar (YYYY)new Date().getFullYear() // Dynamic Current Year
squareBoolean. Enable or disable js that makes grid items square dynamicallytrue
button_styleCSS Class on next and previous buttonsbtn btn-primary btn-xs
previous_htmlHTML in previous buttonFont Awesome Chevron Left
next_htmlHTML in next buttonFont Awesome Chevron Right
title_elementHTML element for titleh1
title_classCSS Class for titlettl
day_classCSS Class for dayscol-xs-1
day_header_classCSS Class for day headerscol-xs-1
week_classClass for weekrow
week_header_classClass for week headerrow
daysArray of day names, starting with Sunday['Sun','Mon','Tue','Wed','Thu','Fri','Sat']
monthsArray of month names['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']

Dependencies

  • jQuery 3.2
  • jQuery UI 1.12.1
  • Bootstrap 3
  • Font Awesome 4.7.0
1.0.21

7 years ago

1.0.20

7 years ago

1.0.19

7 years ago

1.0.18

7 years ago

1.0.17

7 years ago

1.0.16

7 years ago

1.0.15

7 years ago

1.0.14

7 years ago

1.0.13

7 years ago

1.0.11

7 years ago

1.0.10

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago