├── .DS_Store ├── .gitignore ├── README.md ├── ajaxmailer.php ├── css └── jkit.css ├── favicon.ico ├── images ├── fb_logo_full.jpg ├── fb_logo_min.jpg ├── h2bg.gif ├── jkit_bg.jpg ├── jkit_logo.png ├── monsters.jpg ├── newyorkcity_1280x800.jpg ├── oversized.jpg ├── sample_button_off.png ├── sample_button_on.png ├── sky.jpg ├── slides │ ├── p1.jpg │ ├── p2.jpg │ ├── p3.jpg │ ├── p4.jpg │ └── p5.jpg └── square.jpg ├── index.html ├── jkit-facebook-logo.gif ├── jkit.jquery.json ├── jquery-1.9.1.min.js ├── jquery.easing.1.3.js ├── jquery.jkit.1.2.16.js ├── jquery.jkit.1.2.16.min.js ├── jquery.jkit.autoload.1.2.16.js ├── jquery.jkit.autoload.1.2.16.min.js ├── jquery.jkit.commands ├── _command_template.js ├── accordion.js ├── accordion.min.js ├── ajax.js ├── ajax.min.js ├── animation.js ├── animation.min.js ├── api.js ├── api.min.js ├── background.js ├── background.min.js ├── binding.js ├── binding.min.js ├── carousel.js ├── carousel.min.js ├── chart.js ├── chart.min.js ├── cycle.js ├── cycle.min.js ├── encode.js ├── encode.min.js ├── filter.js ├── filter.min.js ├── fontsize.js ├── fontsize.min.js ├── form.js ├── form.min.js ├── gallery.js ├── gallery.min.js ├── hide.js ├── hide.min.js ├── key.js ├── key.min.js ├── lightbox.js ├── lightbox.min.js ├── limit.js ├── limit.min.js ├── live.js ├── live.min.js ├── loop.js ├── loop.min.js ├── lorem.js ├── lorem.min.js ├── menu.js ├── menu.min.js ├── paginate.js ├── paginate.min.js ├── parallax.js ├── parallax.min.js ├── partially.js ├── partially.min.js ├── plugin.js ├── plugin.min.js ├── random.js ├── random.min.js ├── remove.js ├── remove.min.js ├── replace.js ├── replace.min.js ├── respond.js ├── respond.min.js ├── scroll.js ├── scroll.min.js ├── show.js ├── show.min.js ├── showandhide.js ├── showandhide.min.js ├── slideshow.js ├── slideshow.min.js ├── sort.js ├── sort.min.js ├── split.js ├── split.min.js ├── summary.js ├── summary.min.js ├── swap.js ├── swap.min.js ├── tabs.js ├── tabs.min.js ├── template.js ├── template.min.js ├── ticker.js ├── ticker.min.js ├── tooltip.js ├── tooltip.min.js ├── zoom.js └── zoom.min.js ├── license.txt ├── made_with_jkit_button.png ├── plugins ├── datepicker │ ├── css │ │ ├── datepicker.css │ │ └── layout.css │ ├── images │ │ ├── custom_b.png │ │ ├── custom_bl.png │ │ ├── custom_br.png │ │ ├── custom_l.png │ │ ├── custom_r.png │ │ ├── custom_t.png │ │ ├── custom_tl.png │ │ ├── custom_tr.png │ │ ├── datepicker_b.png │ │ ├── datepicker_bl.png │ │ ├── datepicker_br.png │ │ ├── datepicker_l.png │ │ ├── datepicker_r.png │ │ ├── datepicker_t.png │ │ ├── datepicker_tl.png │ │ ├── datepicker_tr.png │ │ └── field.png │ ├── index.html │ └── js │ │ ├── datepicker.js │ │ ├── eye.js │ │ ├── jquery.js │ │ ├── layout.js │ │ └── utils.js ├── jquery.confirm-1.3.js ├── jquery.ztinputhint-1.2.js ├── jquery.ztinputhint-1.2.min.js └── maxlength │ ├── LICENSE.txt │ ├── index.html │ ├── jquery-1.3.2.min.js │ ├── jquery.maxlength-min.js │ ├── jquery.maxlength.js │ └── style.css └── stuff ├── ajax_sample_content_1.html ├── ajax_sample_content_2.html ├── ajaxcontent1.html ├── ajaxcontent2.html └── modal.html /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/README.md -------------------------------------------------------------------------------- /ajaxmailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/ajaxmailer.php -------------------------------------------------------------------------------- /css/jkit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/css/jkit.css -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/favicon.ico -------------------------------------------------------------------------------- /images/fb_logo_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/images/fb_logo_full.jpg -------------------------------------------------------------------------------- /images/fb_logo_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/images/fb_logo_min.jpg -------------------------------------------------------------------------------- /images/h2bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/images/h2bg.gif -------------------------------------------------------------------------------- /images/jkit_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/images/jkit_bg.jpg -------------------------------------------------------------------------------- /images/jkit_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/images/jkit_logo.png -------------------------------------------------------------------------------- /images/monsters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/images/monsters.jpg -------------------------------------------------------------------------------- /images/newyorkcity_1280x800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/images/newyorkcity_1280x800.jpg -------------------------------------------------------------------------------- /images/oversized.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/images/oversized.jpg -------------------------------------------------------------------------------- /images/sample_button_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/images/sample_button_off.png -------------------------------------------------------------------------------- /images/sample_button_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/images/sample_button_on.png -------------------------------------------------------------------------------- /images/sky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/images/sky.jpg -------------------------------------------------------------------------------- /images/slides/p1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/images/slides/p1.jpg -------------------------------------------------------------------------------- /images/slides/p2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/images/slides/p2.jpg -------------------------------------------------------------------------------- /images/slides/p3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/images/slides/p3.jpg -------------------------------------------------------------------------------- /images/slides/p4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/images/slides/p4.jpg -------------------------------------------------------------------------------- /images/slides/p5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/images/slides/p5.jpg -------------------------------------------------------------------------------- /images/square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/images/square.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/index.html -------------------------------------------------------------------------------- /jkit-facebook-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jkit-facebook-logo.gif -------------------------------------------------------------------------------- /jkit.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jkit.jquery.json -------------------------------------------------------------------------------- /jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /jquery.easing.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.easing.1.3.js -------------------------------------------------------------------------------- /jquery.jkit.1.2.16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.1.2.16.js -------------------------------------------------------------------------------- /jquery.jkit.1.2.16.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.1.2.16.min.js -------------------------------------------------------------------------------- /jquery.jkit.autoload.1.2.16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.autoload.1.2.16.js -------------------------------------------------------------------------------- /jquery.jkit.autoload.1.2.16.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.autoload.1.2.16.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/_command_template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/_command_template.js -------------------------------------------------------------------------------- /jquery.jkit.commands/accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/accordion.js -------------------------------------------------------------------------------- /jquery.jkit.commands/accordion.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/accordion.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/ajax.js -------------------------------------------------------------------------------- /jquery.jkit.commands/ajax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/ajax.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/animation.js -------------------------------------------------------------------------------- /jquery.jkit.commands/animation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/animation.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/api.js -------------------------------------------------------------------------------- /jquery.jkit.commands/api.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/api.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/background.js -------------------------------------------------------------------------------- /jquery.jkit.commands/background.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/background.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/binding.js -------------------------------------------------------------------------------- /jquery.jkit.commands/binding.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/binding.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/carousel.js -------------------------------------------------------------------------------- /jquery.jkit.commands/carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/carousel.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/chart.js -------------------------------------------------------------------------------- /jquery.jkit.commands/chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/chart.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/cycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/cycle.js -------------------------------------------------------------------------------- /jquery.jkit.commands/cycle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/cycle.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/encode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/encode.js -------------------------------------------------------------------------------- /jquery.jkit.commands/encode.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/encode.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/filter.js -------------------------------------------------------------------------------- /jquery.jkit.commands/filter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/filter.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/fontsize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/fontsize.js -------------------------------------------------------------------------------- /jquery.jkit.commands/fontsize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/fontsize.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/form.js -------------------------------------------------------------------------------- /jquery.jkit.commands/form.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/form.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/gallery.js -------------------------------------------------------------------------------- /jquery.jkit.commands/gallery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/gallery.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/hide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/hide.js -------------------------------------------------------------------------------- /jquery.jkit.commands/hide.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/hide.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/key.js -------------------------------------------------------------------------------- /jquery.jkit.commands/key.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/key.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/lightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/lightbox.js -------------------------------------------------------------------------------- /jquery.jkit.commands/lightbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/lightbox.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/limit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/limit.js -------------------------------------------------------------------------------- /jquery.jkit.commands/limit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/limit.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/live.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/live.js -------------------------------------------------------------------------------- /jquery.jkit.commands/live.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/live.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/loop.js -------------------------------------------------------------------------------- /jquery.jkit.commands/loop.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/loop.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/lorem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/lorem.js -------------------------------------------------------------------------------- /jquery.jkit.commands/lorem.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/lorem.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/menu.js -------------------------------------------------------------------------------- /jquery.jkit.commands/menu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/menu.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/paginate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/paginate.js -------------------------------------------------------------------------------- /jquery.jkit.commands/paginate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/paginate.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/parallax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/parallax.js -------------------------------------------------------------------------------- /jquery.jkit.commands/parallax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/parallax.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/partially.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/partially.js -------------------------------------------------------------------------------- /jquery.jkit.commands/partially.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/partially.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/plugin.js -------------------------------------------------------------------------------- /jquery.jkit.commands/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/plugin.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/random.js -------------------------------------------------------------------------------- /jquery.jkit.commands/random.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/random.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/remove.js -------------------------------------------------------------------------------- /jquery.jkit.commands/remove.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/remove.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/replace.js -------------------------------------------------------------------------------- /jquery.jkit.commands/replace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/replace.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/respond.js -------------------------------------------------------------------------------- /jquery.jkit.commands/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/respond.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/scroll.js -------------------------------------------------------------------------------- /jquery.jkit.commands/scroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/scroll.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/show.js -------------------------------------------------------------------------------- /jquery.jkit.commands/show.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/show.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/showandhide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/showandhide.js -------------------------------------------------------------------------------- /jquery.jkit.commands/showandhide.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/showandhide.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/slideshow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/slideshow.js -------------------------------------------------------------------------------- /jquery.jkit.commands/slideshow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/slideshow.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/sort.js -------------------------------------------------------------------------------- /jquery.jkit.commands/sort.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/sort.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/split.js -------------------------------------------------------------------------------- /jquery.jkit.commands/split.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/split.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/summary.js -------------------------------------------------------------------------------- /jquery.jkit.commands/summary.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/summary.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/swap.js -------------------------------------------------------------------------------- /jquery.jkit.commands/swap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/swap.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/tabs.js -------------------------------------------------------------------------------- /jquery.jkit.commands/tabs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/tabs.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/template.js -------------------------------------------------------------------------------- /jquery.jkit.commands/template.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/template.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/ticker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/ticker.js -------------------------------------------------------------------------------- /jquery.jkit.commands/ticker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/ticker.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/tooltip.js -------------------------------------------------------------------------------- /jquery.jkit.commands/tooltip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/tooltip.min.js -------------------------------------------------------------------------------- /jquery.jkit.commands/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/zoom.js -------------------------------------------------------------------------------- /jquery.jkit.commands/zoom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/jquery.jkit.commands/zoom.min.js -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/license.txt -------------------------------------------------------------------------------- /made_with_jkit_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/made_with_jkit_button.png -------------------------------------------------------------------------------- /plugins/datepicker/css/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/css/datepicker.css -------------------------------------------------------------------------------- /plugins/datepicker/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/css/layout.css -------------------------------------------------------------------------------- /plugins/datepicker/images/custom_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/images/custom_b.png -------------------------------------------------------------------------------- /plugins/datepicker/images/custom_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/images/custom_bl.png -------------------------------------------------------------------------------- /plugins/datepicker/images/custom_br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/images/custom_br.png -------------------------------------------------------------------------------- /plugins/datepicker/images/custom_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/images/custom_l.png -------------------------------------------------------------------------------- /plugins/datepicker/images/custom_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/images/custom_r.png -------------------------------------------------------------------------------- /plugins/datepicker/images/custom_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/images/custom_t.png -------------------------------------------------------------------------------- /plugins/datepicker/images/custom_tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/images/custom_tl.png -------------------------------------------------------------------------------- /plugins/datepicker/images/custom_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/images/custom_tr.png -------------------------------------------------------------------------------- /plugins/datepicker/images/datepicker_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/images/datepicker_b.png -------------------------------------------------------------------------------- /plugins/datepicker/images/datepicker_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/images/datepicker_bl.png -------------------------------------------------------------------------------- /plugins/datepicker/images/datepicker_br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/images/datepicker_br.png -------------------------------------------------------------------------------- /plugins/datepicker/images/datepicker_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/images/datepicker_l.png -------------------------------------------------------------------------------- /plugins/datepicker/images/datepicker_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/images/datepicker_r.png -------------------------------------------------------------------------------- /plugins/datepicker/images/datepicker_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/images/datepicker_t.png -------------------------------------------------------------------------------- /plugins/datepicker/images/datepicker_tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/images/datepicker_tl.png -------------------------------------------------------------------------------- /plugins/datepicker/images/datepicker_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/images/datepicker_tr.png -------------------------------------------------------------------------------- /plugins/datepicker/images/field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/images/field.png -------------------------------------------------------------------------------- /plugins/datepicker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/index.html -------------------------------------------------------------------------------- /plugins/datepicker/js/datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/js/datepicker.js -------------------------------------------------------------------------------- /plugins/datepicker/js/eye.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/js/eye.js -------------------------------------------------------------------------------- /plugins/datepicker/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/js/jquery.js -------------------------------------------------------------------------------- /plugins/datepicker/js/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/js/layout.js -------------------------------------------------------------------------------- /plugins/datepicker/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/datepicker/js/utils.js -------------------------------------------------------------------------------- /plugins/jquery.confirm-1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/jquery.confirm-1.3.js -------------------------------------------------------------------------------- /plugins/jquery.ztinputhint-1.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/jquery.ztinputhint-1.2.js -------------------------------------------------------------------------------- /plugins/jquery.ztinputhint-1.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/jquery.ztinputhint-1.2.min.js -------------------------------------------------------------------------------- /plugins/maxlength/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/maxlength/LICENSE.txt -------------------------------------------------------------------------------- /plugins/maxlength/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/maxlength/index.html -------------------------------------------------------------------------------- /plugins/maxlength/jquery-1.3.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/maxlength/jquery-1.3.2.min.js -------------------------------------------------------------------------------- /plugins/maxlength/jquery.maxlength-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/maxlength/jquery.maxlength-min.js -------------------------------------------------------------------------------- /plugins/maxlength/jquery.maxlength.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/maxlength/jquery.maxlength.js -------------------------------------------------------------------------------- /plugins/maxlength/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/plugins/maxlength/style.css -------------------------------------------------------------------------------- /stuff/ajax_sample_content_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/stuff/ajax_sample_content_1.html -------------------------------------------------------------------------------- /stuff/ajax_sample_content_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/stuff/ajax_sample_content_2.html -------------------------------------------------------------------------------- /stuff/ajaxcontent1.html: -------------------------------------------------------------------------------- 1 | Test content 1 ... -------------------------------------------------------------------------------- /stuff/ajaxcontent2.html: -------------------------------------------------------------------------------- 1 | Test content 2 ... -------------------------------------------------------------------------------- /stuff/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrediBach/jQuery-jKit/HEAD/stuff/modal.html --------------------------------------------------------------------------------