<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">jQuery(document).ready(function() // ESTA FUNCION SE EJECUTA AL CARGAR EL DOM
{
    //$('.page').animate({scrollTop:0}, 'slow');


    $(document).keyup(function(e) { // Esta funcion se ejecuta cuandon presionamos la tecla "esc"
        
        if (e.key === "Escape") 
        {
            
        }
    });

    if ( document.getElementById('form_contacto') ) 
    {
        $( "#form_contacto" ).submit(function( e ) 
        {
            e.preventDefault();

        });
    }

    console.clear();
    

});


function toElement(id_element)
{

    if (document.getElementById(id_element)) 
    {
        let element = document.getElementById(id_element);

        element.scrollIntoView({behavior: 'smooth', block: 'start',});
    }

    console.clear();

    
}</pre></body></html>