submenu.js 1001 B

12345678910111213141516171819202122232425
  1. $('.linksSubMenu').click(function(){
  2. var cid = $(this).data('id');
  3. $.ajax({
  4. url: 'action/submenu_action.php',
  5. type: 'POST',
  6. dataType: 'json',
  7. data: { id: cid },
  8. success: function(result) {
  9. if(result['error']!= '' && result['error'] !== undefined){
  10. $('#titSeccion').text('');
  11. $('#contenidoSeccion').html();
  12. }else{
  13. $('#titSeccion').text(result['titulo']);
  14. $('#contenidoSeccion').html(result['contenido']);
  15. }
  16. $('#modalSeccion').modal('show');
  17. },
  18. error: function(jqXHR, textStatus, errorThrown ){
  19. $('#titSeccion').text('');
  20. $('#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>
  21. <div class="display-1 ing-no-cargado text-danger mb-2"></div>`);
  22. $('#modalSeccion').modal('show');
  23. }
  24. });
  25. });