Pergunta

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

Foi útil?

Solução

I suppose you can have a function like this:

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

Demo

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top