Posted On May 7, 2019

HTML: Tagging and Jumping to Sections of Page

kimconnect 0 comments
blog.KimConnect.com >> Codes >> HTML: Tagging and Jumping to Sections of Page

Each element of an HTML document could be set with a unique ID so that it can be targeted as a unique entity. For instance, this “Jump to Checkpoint” link will jump toward the Check Point <div>.

<a href="#checkpoint">Jump to Checkpoint</a>

Abra

Ka

Dapra

A

Laga

Mush

Pe

Tal

<div id="checkpoint">Checkpoint</div>
Checkpoint

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Microsoft SQL Database Migration

Update 9/25/20: There's another version of this script has has been rewritten form scratch. IMO,…

PowerShell: Reset Active Directory User Password

# User input variables $adminUsername='intranet\kim-a' $adminPassword='SOMECOMPLEXPASSWORD' $userId='kim' $newPassword='SOMECOMPLEXPASSWORD' $domainController='intranet.kimconnect.com' # Auto-gen Variables $encryptedPassword=ConvertTo-SecureString $adminPassword -AsPlainText…

PowerShell: Generate a CSV Report of O365 Exchange Online Mailboxes

# Office 365 Global Admin Credential$username="[email protected]"$password=ConvertTo-securestring "PASSWORD" -AsPlainText -Force$cred = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $username,$passwordfunction…