| 12345678910111213141516171819202122232425 |
- $('.linksSubMenu').click(function(){
- var cid = $(this).data('id');
- $.ajax({
- url: 'action/submenu_action.php',
- type: 'POST',
- dataType: 'json',
- data: { id: cid },
- success: function(result) {
- if(result['error']!= '' && result['error'] !== undefined){
- $('#titSeccion').text('');
- $('#contenidoSeccion').html();
- }else{
- $('#titSeccion').text(result['titulo']);
- $('#contenidoSeccion').html(result['contenido']);
- }
- $('#modalSeccion').modal('show');
- },
- error: function(jqXHR, textStatus, errorThrown ){
- $('#titSeccion').text('');
- $('#contenidoSeccion').html(`<div class="px-3 mb-3 text-center text-primary display-5">No se puede mostrar la información en este momento</div>
- <div class="display-1 ing-no-cargado text-danger mb-2"></div>`);
- $('#modalSeccion').modal('show');
- }
- });
- });
|