I am changing the class of an element with the following
$(\"#\"+data.id).addClass(\"highlight\")
Given the list below.
<
The best to remove a class in jquery from all the elements is to target via element tag. e.g.,
$("div").removeClass("highlight");