Ok, thanks. But in that case using CSS and not Chartist.js..?
Because I also have some of these:
Because I also have some of these:
Code:
// UPS Load
$(function() {
grp.listen('35/0/6', function(obj, type) {
var load = grp.getvalue('35/0/6');
var planid = 17;
var el = $('<progress id="p1" value="' + load + '" max="100"></progress>').css({
position: 'absolute',
top: '528px',
left: '100px'
}).appendTo('#plan-' + planid);
}, true);
});
That I don't quite understand how to deal with now...