DeveloperBreeze

Smooth Scroll to Contact Element on DOM Content Load

document.addEventListener('DOMContentLoaded', function () {
    // Get the contact element by its ID
    var contactElement = document.getElementById('contact');

    // Check if the contact element exists
    if (contactElement) {
        // Scroll to the contact element with smooth behavior
        contactElement.scrollIntoView({
            behavior: 'smooth'
        });
    }
});

Related Posts

More content you might like

Code

How to Create a New MySQL User with Full Privileges

No preview available for this content.

May 01, 2025
Read More
Code
python

Configuring SQLAlchemy with PostgreSQL on Heroku: A Quick Guide

if database_url.startswith("postgres://"):
    database_url = database_url.replace("postgres://", "postgresql+psycopg2://")

This code ensures that:

Nov 08, 2024
Read More
Code
php

How to Delete All WordPress Posts and Their Uploads Using a Custom PHP Script

No preview available for this content.

Oct 25, 2024
Read More
Code
php

How To enable all error debugging in PHP

No preview available for this content.

Oct 25, 2024
Read More

Discussion 0

Please sign in to join the discussion.

No comments yet. Be the first to share your thoughts!