record.js
465 Bytes
/**
* Created by moli on 15/7/20.
*/
$(function(){
$(".tab").on("click", "li", function(){
$(".tab li").removeClass("on");
$(this).addClass("on");
$(".form").hide();
$(".form").eq($(this).index()).show();
})
$(".filter").on("click", function(){
$(this).parent().next().toggle();
});
$(".time").each(function(){
var picker = new Pikaday({
field: $(this)[0]
});
});
});