Всем большое спасибо, за советы. Особенно благодарен "Zuenf". Проблему решил так:
var ancorIndex;
$(document).on('pageinit pageshow', function(){
$("#user-list li").each(function(index){
$(this).on("tap",function(event){
$(".group-links-wrap").css({"background": "none"});
$(".group-links").hide();
$(".group-info").show();
$(this).find(".group-info").hide();
$(this).find(".group-links-wrap").css({"background": "#E35834"});
$(this).find(".group-links").show();
if(ancorIndex !=index)
{
event.preventDefault();
ancorIndex = index;
}
});
});
});