Frage

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

War es hilfreich?

Lösung

I suppose you can have a function like this:

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

Demo

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top