
Get the href link on click anchor in javascript
Created at 25-Aug-2021 ,
By samar
Get the href link on click anchor in javascript
In this article, we will see how to solve "Get the href link on click anchor in javascript".
You can get the href link on click of anchor tag in javascript. On click event we can get the href value of the anchor tag and redirect to that link and anything which you want to do with the href link.-
Get href link on click anchor tag in javascript/jQuery
<a id="anchorBtn" href="https://w3codegenerator.com"> w3codegenerator </a> <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script> <script> $('#anchorBtn').on('click', function(e){ e.preventDefault(); let href = e.target.href; alert(href); }); </script>
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
Don't forget to share this article! Help us spread the word by clicking the share button below.
We appreciate your support and are committed to providing you valuable and informative content.
We are thankful for your never ending support.
Random Code Snippet Queries: Jquery
- How to get closest form input value in jQuery
- Show loading icon on click submit button in jQuery
- Enable click event on appended element using jQuery
- Preview image in base64 format using jQuery on change input file
- Mixed Content: The page at 'https://w3codegenerator.com/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint
- Append method to add text to body not working
- Ajax done fail ajaxcomplete in not a function
- Jquery-3.6.0.min.js CDN link
- Ajax for multiple form
- How to reset form input element on click
- How to remove Choose File button in jquery
- Uncaught TypeError: $.ajaxSetup is not a function
- Add and remove input fields on click button using jQuery
- How to pass javascript variable to laravel route on ajax call
- How to find closest upper element and append html to below it in jquery
- How to check object is empty or not in jQuery
- How to use and purpose of localstorage in javascript
- Uncaught TypeError: $.ajax is not a function
- Preview image in BLOB URL format on choose file in jQuery
- JQuery append html to below the target element
- How to create read more in jquery
- Execute function after Ajax call is complete
- How to preview image before uploading in jQuery
- How to validate input type file size in jQuery for multiple records
- How to check ajax request is completed in jQuery