List divider behavior
I managed to figure it out with the help of that link and the rest of this post. However, the code:
$t.refreshScreenFormElements($.mobile.activePage.prop('id'));
Appery("eventList").find("li").eq(0).hide();
return;
unnecessarily hides the first divider for the first item in my list. I would like to hide the last divider since it is showing up unnecessarily, like so:
I need to remove the last one. How would I do that?