06.02.2017, 09:38
I almost solved it with this code:
But it doesn't work really well because sometimes the other script overwritten the value..
Code:
$('.example .circularslider-max').on("vclick", function() {
setTimeout(function() {
var val = $('.example .circularslider-value').text();
if (val == "1" || val == "2" || val == "3")
{
val = "+" + val;
$('.example .circularslider-value').text(val);
}
}, 120);
});
But it doesn't work really well because sometimes the other script overwritten the value..