var vURL = "https://webs.academia.cat/assets/api_cicle/api/apinoticies.php"; $.ajax({ url: vURL, type: "POST", data: { codient: '019', tipusent: '2', nomcat: 11, paginacio: "false", format: 'json', limit: '1', autoIni : 'true', detall: '/post', param_idnoticia : '/' }, success: function (r) { html = ''; if ( typeof r[0].TITOL !== 'undefined' ) { html += '
'; html += '
'; html += '
'; html += ' '; html += '
'; html += '
'; html += '
'; html += '
' + r[0].TITOL + '
'; html += '

' + r[0].DATA_INICI + '

'; html += '

' + r[0].EXTRACTE + '

'; html += ' '; html += '
'; html += '
'; html += '
'; html += '
'; } $("#retornHTMLPost").html( html ); /* $("#retornHTML").find('#retornApi').remove(); $('#retornHTML').find('hr').before('
').remove(); $('#retornHTML .control-group').each(function() { $(this).addClass('row'); $(this).children('.form-group').addClass('col-md-3'); });*/ } });