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
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! =)