I am changing the class of an element with the following
$(\"#\"+data.id).addClass(\"highlight\")
Given the list below.
<
You need to select the li tags contained within the .edgetoedge class. .edgetoedge only matches the one ul tag:
li
.edgetoedge
ul
$(".edgetoedge li").removeClass("highlight");