$(document).ready(function() {
$(".voteMe").one('click', function (event) {
event.preventDefault();
//my stuff
$(this).prop('disabled', true);
});
});
the above code is allowing single mouse click.but it is not allowing next click i mean next single mouse click it is assuming double click. my final conclusion is i want allow all single clicks and dis allow double clicks(when ever consumer enter double click it will take only single click only)