I am trying to find a slider or a toggle for my application that allows the user to select yes or no and its harder then i thought to track one down...
I found this slider but its 1 or 2 numeric and not yes or no text...any suggestions
I am trying to find a slider or a toggle for my application that allows the user to select yes or no and its harder then i thought to track one down...
I found this slider but its 1 or 2 numeric and not yes or no text...any suggestions
we could edit it to have something like this,
$(function() {
$("#slider-range-max").slider({
range: "max",
min: 0,
max: 1,
value: 0,
slide: function(event, ui) {
$("#amount").val(ui.value?'Yes':'No');
}
});
$("#amount").val($("#slider-range-max").slider("value")?'Yes':'No');
});