So basically I have a link as a div in page 1.
<a href="/computing/abc/page2.php" class="topic-list-item">
    <h3 class="topic-title">Internet Protocol Basics</h3>
    <div class="topic-description-text">
        Learn how Internet Protocol is used 
    </div>
</a>
When I click on the div it opens the page 2 by reloading the page.
I want the new content of page 2 to appear without any reloading while at the same time this changes my URL.
Is this possible?
 
     
     
    