Question

I have table in which when the points are dragged , the corresponding value in table gets updated.

But i have done it using switch statement and is getting quite complex.

Is there a way i can achieve same using simple jquery/Javascript code.

Here is FIDDLE DEMO

Was it helpful?

Solution

I suppose you can have a function like this:

function updater(yv,xv){
   var num = xv.match(/^\d+/);
   $('#b'+num).html(yv);
}

Demo

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top