0
I’m trying to create a JS calendar.
First I made a <table>
that will fill the <td>
according to the days, leaving all available to click and select a particular day. The user selects a round day and a round day (changing the style of the date selected by clicking) and the dates are redirected to a particular date <input>
. And there’s the problem, when you click on several <td>
, they keep changing the style without a click control.
This is an example of how I’m doing to recognize clicks:
function daysD(){
$("td").click(function (){
this.style.color = "#FFF";
this.style.backgroundColor = "#65BC2B";
});
}
Has the ability to control the number of times clicked, to recognize only two clicks?