Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Append elements on value

I'm using roundSlider for radial slider. Which gives me value on slide. on slide I'm appeding span elements.

So what I want exactly is span should as per plates number. If there are 22 plates so span should be only 22 and if plates are 10 then span should also be 10 or vice-versa.

Find Fiddle Demo

Currently, It's just appending in 1 length. I want it to append (add and remove) as per var tp value.

var tp = $('.rs-tooltip').text() / 1000;
$('#plates span').text(tp);
$('.mbox').append('<span></span>')
like image 371
Ganesh Yadav Avatar asked Jun 20 '26 10:06

Ganesh Yadav


2 Answers

Demo Fiddle Here

add with for loop event .The for loop will append the span depend on span value. Initially remove inner content of .mbox .Then its will re added with a help of for loop

function traceEvent(e) {
        var tp = $('.rs-tooltip').text() / 1000;
        console.log(tp);
      $('#plates span').text(tp);
      $('.mbox').html("");//empty
    for(var i=0; i<tp; i++){
        $('.mbox').append('<span id="'+[i]+'"></span>')//add
        }
like image 130
prasanth Avatar answered Jun 23 '26 00:06

prasanth


See updated here: https://jsfiddle.net/ddan/a6devr3b/3/

I did a small change on your traceEvent method to empty the plates first.

function traceEvent(e) {
    var tp = $('.rs-tooltip').text() / 1000;
    console.log(tp);
    $('#plates span').text(tp);
    $('.mbox').html('');
    for (i = 0; i < tp; i++ )
    $('.mbox').append('<span/>');
}
like image 42
DDan Avatar answered Jun 23 '26 01:06

DDan