https://github.com/webpolis/dlfavorite
jQuery Plugin
https://github.com/webpolis/dlfavorite
Last synced: 4 months ago
JSON representation
jQuery Plugin
- Host: GitHub
- URL: https://github.com/webpolis/dlfavorite
- Owner: webpolis
- Created: 2012-07-05T06:31:34.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-07-05T06:46:02.000Z (almost 14 years ago)
- Last Synced: 2025-01-15T09:00:54.355Z (over 1 year ago)
- Size: 97.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
dlFavorite - jQuery Plugin
==========================
Easily toggles a checkbox/radio button into a "star" (Gmail like) favorite button,
and optionally provide a callback and/or AJAX destination to make the appropiate changes.
Options:
imgStateDisabled: star icon on disabled state
imgStateEnable: star icon on enabled state
ajax: destination URL to process field's value
onChange: callback executed on state change
Example:
$('input[type=checkbox]').dlFavorite({
imgStateDisabled: 'star_grey.png',
imgStateEnable: 'star.png',
ajax:'/ajax/setFavorite'
});