Skip to content

Latest commit

 

History

History
56 lines (31 loc) · 1.83 KB

README.md

File metadata and controls

56 lines (31 loc) · 1.83 KB

ezMark jQuery Plugin

ezMark is a jQuery Plugin that allows you to stylize Radio button and Checkbox easily. Its very small (minified version is ~1.5kb) compared to other similar scripts. It has been tested and works on all major browsers (IE 6/7/8, Firefox, Safari, Chrome).

How to Use

At first include the CSS and JS files.

  • CSS: <link rel="stylesheet" href="css/ezmark.css" media="all">
  • JS: <script type="text/javascript" language="Javascript" src="jquery.ezmark.js"></script>

Then simply call the following method:

$('selector').ezMark([options]);

You can customize to selector to apply only to checkbox or radiobuttons, like below:

$('input[type="checkbox"]').ezMark(); // to apply only to checkbox use

$('input[type="radio"]').ezMark(); // for only radio buttons

Parameters / Options

Optional Parameter accepts the following JSON properties:

Parameter's (JSON) Properties: Explanation/Details of the Property checkboxCls The Checkbox Class as per declaration on CSS. checkedCls The Checkbox Class on Checked State radioCls The Radio button's Class as per CSS selectedCls The Radio Button's Class on selected State

  • To customize the default checkbox/radiobutton image, change the background image (checkbox-black.png/radio-black.png) and CSS (ez-checkbox/ez-radio) and (ez-checked/ez-selected) accordingly.

  • For detailed usage, please check out usage.html file.

Online Documentation / Demo