Posts by Inael Rodrigues • 307 points
3 posts
-
6
votes3
answers8147
viewsQ: How to fix javascript encoding problem?
I’m running the code below: alert('Não é possível realizar essa operação sem a seleção de uma banca.'); but it’s showing up like this:…
javascriptasked Inael Rodrigues 307 -
6
votes2
answers2854
viewsQ: How to view a PDF in the browser with an ajax request?
I make a requisition like this: $.ajax({type : 'GET', url : URL_APP_CONSULTA_BOLETO_DIVIDA_ATIVA + url}); I have a java method that returns something like this: return…
-
8
votes3
answers2145
viewsQ: How to display the exception message(ex.getMessage()) launched by the server in a jquery ajax?
@GET @Path("boleto/{processo}/{resposta}") @Produces({ "application/pdf","application/json"}) public Response gerarBoletoDividaAtivaComCaptcha(@PathParam("processo") String…