Friday, 14 June 2013

How to check which wordpress theme or plugin is installed

Many a times you want to check which theme is installed on a wordpress site then you can surely use this tool to which theme is installed on that http://whatwpthemeisthat.com/
http://whatwpthemeisthat.com/
It also show installed plugins as well

Tuesday, 4 June 2013

How to get date in javascript in required format


function tgDate(date) {
    var d = new Date(date || Date.now()),
        month = '' + (d.getMonth() + 1),
        day = '' + d.getDate(),
        year = d.getFullYear();

    if (month.length < 2) month = '0' + month;
    if (day.length < 2) day = '0' + day;

    return [day, month, year].join('-');
}

alert(tgDate());