Answers for "jquery get anchor value from url"

0

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);    
  });  

});
Posted by: Guest on July-18-2020
0

Javascript check for hash in URL

if (location.href.indexOf("#") != -1) {
    //current url has a #hash in it
}
Posted by: Guest on July-26-2019
0

get hash js

location.hash
Posted by: Guest on July-01-2020

Code answers related to "jquery get anchor value from url"

Code answers related to "Javascript"

Browse Popular Code Answers by Language