Updating jQuery Tablesorter plugin after removing a row from DOM

前端 未结 7 584
迷失自我
迷失自我 2020-11-30 07:40

I have some code at the moment that hides a row that is deleted and then removes it using the .remove() function.

However I\'m having difficulty is making it remain

相关标签:
7条回答
  • Better to use table.splice(index, 1); than delete( table[index] );! "Delete" do just empty element of array, but not deleted completely. Sorry for my English! =)

    0 讨论(0)
提交回复
热议问题