jquery get anchor value from url code example

Example 1: how to get href value of anchor tag in jquery

<div class="getval">
   		<a href="https://wlearnsmart.com/">W learn Smart</a>
   </div>    

<script type="text/javascript">

$(document).ready(function() {

  $('.getval a').click(function() {
    event.preventDefault();
    var get = $(this).attr('href');
    alert(get);
    console.log(get);    
  });  

});

Example 2: Javascript check for hash in URL

if (location.href.indexOf("#") != -1) {
    //current url has a #hash in it
}

Example 3: get hash js

location.hash