Ver originalfunction UpdateDiv(Url, Capa){ $.ajax({ type: 'get', url: Url, dataType: 'html', success: function(data){ $("#"+Capa).html(data) } });}