13 lines
290 B
JavaScript
Executable File
13 lines
290 B
JavaScript
Executable File
Event.observe(window, 'load', function() {
|
|
|
|
if($('agregarCertificado')!= undefined)
|
|
Event.observe($('agregarCertificado'), "click", AgregarCertificado);
|
|
|
|
});
|
|
|
|
function AgregarCertificado(){
|
|
|
|
$("loader").show();
|
|
$('frmCertificado').submit();
|
|
|
|
}//AgregarCertificado
|