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 Exchange Active Directory Integration

Assuming that Exchange is already set and in production, it's often advisable to record its…

PowerShell: Measure File Copying Time

The scripty: $sourcesAndDestinations=@("C:\Users\kimconnect\Desktop\test\test1 C:\Users\kimconnect\Desktop\test\test2","C:\Users\kimconnect\Desktop\test\test2 C:\Users\kimconnect\Desktop\test\test3")$testPath="C:\Users\kimconnect\Desktop\test\test1"$switchesMirrorDirectories="/MIR /SEC /W:3 /FFT "$dateStamp = Get-Date -Format "yyyy-MM-dd-hh-mm"$currentPath=(Get-Item -Path ".\").FullName$log="/LOG+:$currentPath\robocopy-log-$dateStamp.txt"function…

Update Windows with Restricted Internet Access

This script is an extract of a longer version with the features of simultaneous executions…