//Componente 18 $(function(){ }) //Componente 32 $(function(){ $("body").on("click",".seleccionar-instalador",function(){ var insta = $(this).data("inst"); var sol = $(this).data("num"); $("#resultado-evaluacion").load("./",{ "numero_solicitud" : sol, "insta_id" : insta, "_ajax_" : "getComponente", "id" : 33, "msg" : "selected" }); }) $("#form-evaluacion").submit(function(e){ e.preventDefault(); $("#boton-solicitar").prop("disabled",true); $.post("./",$(this).serializeArray(),function(e){ if(e.msg == true || e.msg == "all") { $("#boton-solicitar").html("Cargando..."); $("#resultado-evaluacion").load("./",{ "numero_solicitud" : $("input[name='num_solicitud']").val(), "_ajax_" : "getComponente", "id" : 33, "msg" : e.msg }); } else { $("#boton-solicitar").prop("disabled",false); alert(e.msg); } },"json"); return false; }) if($("input[name='num_solicitud']").val() != "") { $("#boton-solicitar").click(); } })//Componente 25 $(function(){ })