Skip to content Skip to sidebar Skip to footer

How To Use Jquery Datepicker Or Angularjs To Display Days Of The Week Alone?

I'm working on a project that needs me to do three things depending on the options chosen. The options in a dropdown are Daily, Weekly, Monthly, and Yearly. If Weekly is chosen, I

Solution 1:

You can try with something like this (Fiddle demo):

var days = ['Mon','Tues','Wed','Thu','Fri','Sat','Sun'];

function getContent(dateScope)
{
    var ret = "";
    switch(dateScope) {
        case "w": for(i in days)
            ret += "<button>"+days[i]+"</button>";
            break;
        case "m": for(i=1;i<=31;i++)
            ret += "<button>"+i+"</button>";
            break;
        case "y": for(i=1;i<=12;i++)
            ret += "<button>"+i+"</button>";
            break;
    }
    return ret;
}

$("#dateScope").change(function(){
    $("#buttonsDiv").html(getContent($(this).val()));
});

Post a Comment for "How To Use Jquery Datepicker Or Angularjs To Display Days Of The Week Alone?"