jqtags/jq-accord

advanced accordian tag

Installs: 8

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 8

Forks: 0

Open Issues: 0

Language:CSS

Type:tag

0.0.0 2015-06-21 21:26 UTC

This package is not auto-updated.

Last update: 2024-04-17 07:08:07 UTC


README

Sample Code:

<jq-accord id="sampledate">
</jq-accord>

Using jQuery you can get/set value

$("#sampledate").val("12 may 2012");

var x = $("#sampledate").val();

$("#sampledate").on("change",function(e){
    console.log("callback : date has changed")
})