function Busqueda(myval) { myoperation = "operacion:Generar_gráfico_para_clave Clave: " + myval; $.post('/ajaxconsole', { operation: myoperation }, function(data) { myresult = eval("(" + data + ")" ); myfile = myresult["filename"]; $("#workflowid").attr("src","/static/tmp/" + myfile); } ); } function Detalle(id) { document.getElementById("Detalle").innerHTML = '\ \ '; Busqueda(id); } function Busqueda_planilla(myval) { $.post('/ajaxgeneratepdf', { id_form: myval }, function(data) { document.getElementById("body_planilla").innerHTML = '\ \ '; } ); } function Detalle_Pdf(id) { document.getElementById("Detalle2").innerHTML = '\ \ '; Busqueda_planilla(id); }