How to put Collapsible List Group in ajax?

1

I want to put tabs when the person in the category opens a list of products, but I can not get [! [

$(document).on("click","btnMesa1",function(evt)
{
	$.ajax({
		type:"get",
		url:"http://localhost:8080/ProjetoXDK/appModelo/www/php/funcao.php",
		data:"acao=listarprodutos",
		dataType:"json",
		sucess: function(data){
			var $itemlista = "";
			$.each(data.registro,function(i,dados){
				$itemlista += "<input type='checkbox' name='escolhe' class='check' onchange='showQtd(nome,this)' value='' "+dados.codigo+"<label>"+dados.nome+"</label><br>"
                + "<label>"+dados.preco+"</label>"});
			$("lstRelacaoProdutos").html($itemlista);
		},
		error: function(erro,exception){
			navigator.notification.alert(erro.responseText);
		}
	});
	activate_subpage("#produtos");
});

] 1 ] 1

    
asked by anonymous 13.11.2017 / 00:06

0 answers