I have the following problem. I have a list of div with a specific size. When the user selects one of the divs on the left, they can edit this information in the view on the right. (shown on the image).
Example: When the user selects the second option (as shown in the image) the div should open on the right with that exact measurements.
I made a JsFiddle with the code that I have so far. I can resize the div with 10px's at the time. The only thing I can't figure out is how to get the specific measurements of the div's on the left to show up inbetween the minus and plus buttons.
I now get the width and height of the box like this.
var measureDivs = function () {
$('.divs-width').html($('.box').width());
$('.divs-height').html($('.box').height());
};
But I want to bind my data like this:JsFiddle

-and+should change, and there are no such buttons in fiddle.. maybe buttons can be dropdown but still missing..