jqtags/jq-date

advanced ajax form tag

Installs: 75

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 9

Forks: 0

Open Issues: 0

Language:JavaScript

Type:tag

0.1.8 2016-07-11 06:59 UTC

This package is not auto-updated.

Last update: 2024-04-13 15:23:07 UTC


README

Sample Code:

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

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")
})