Documentation :

Formates Dates

// dom is a variable contain the selection of element with jQuery $() 

dom.jTimer();   ==>    // Default langage is ARABIC
dom.jTimer({ format:"%hh:%mm:%ss" });   ==> 
dom.jTimer({ format:"%d/%m/%y" });   ==> 
dom.jTimer({ format:"%hh:%mm:%ss %D %d %M %y" });   ==> 

/* -------------------------------------------------------- English -------------------------------------------------------- */
dom.jTimer({ format:"%D %d %M %y %hh:%mm:%ss", lang:"en" });   ==> 
dom.jTimer({ format:"%DD %d %MM %y %hh:%mm:%ss", lang:"en" });   ==> 

/* -------------------------------------------------------- Use AM/PM -------------------------------------------------------- */
dom.jTimer({ format:"%D %d %M %y %hh:%mm", lang:"en" , ampm:true });   ==> 
dom.jTimer({ format:"%DD %d %MM %y %hh:%mm:%ss", lang:"en", ampm:true });   ==> 


Date Customisation

/* -------------------------------------------------------- Add language -------------------------------------------------------- */
dom.jTimer({
format:"%D %d %M %y %hh:%mm",
change:true,
monthArray: ["month1", "month2", "month3", "month4", "month5", "month6", "month7", "month8", "month9", "month10", "month11", "month12"],
dayArray: ["day1", "day2", "day3", "day4", "day5", "day6", "day7"]
});   ==>   

dom.jTimer({// we can specify the long od short day and week by shift propertie
    format: "%DD %d %MM %y %hh:%mm:%ss",
    change: true,
    monthArray: ["month1", "month2", "month3", "month4", "month5", "month6", "month7", "month8", "month9", "month10", "month11", "month12"],
    dayArray: ["day1", "day2", "day3", "day4", "day5", "day6", "day7"],
    shift:3
});    ==>