In this article we will learn how to get href value property for anchor tag in jquery using attr() property. Below example when the user clicks the about link button alert will show the href property value.
Example:
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>get href propertyvalue in anchor tag using jquery</title>
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#mnuAbout").click(function (event) {
var href = $(this).attr('href');
alert(href);
event.preventDefault();
});
});
</script>
<style type="text/css">
a {
color: #00BCD4;
padding: 10px;
}
a:hover {
color: #FF9800;
}
</style>
</head>
<body style="font-family: Arial; border: 1px solid #DED8D8; width: 500px;">
<h2 style="color: #E91E63;">get href property value in anchortag using jquery</h2>
<div style="text-align: center">
<p><a class="menuButton" id="mnuHome" href="http://www.infinetsoft.com">Home</a></p>
<p><a class="menuButton" id="mnuAbout" href="http://www.infinetsoft.com/about">About</a></p>
<p><a class="menuButton" id="mnuContact" href="http://www.infinetsoft.com/contact">Contact Us</a></p>
<p style="color: #071D98;">
click on about link to get href propertyvalue
</p>
</div>
</body>
</html>
Output:
Post your comments / questions
Recent Article
- Fix-Gradient effect turning to gray in after effects
- How to blur an image in python?
- ModuleNotFoundError: No module named 'whois' in Python GoviralHost Without Terminal
- How to Convert Image to Pencil Sketch in Python?
- AttributeError: module 'urllib' has no attribute 'request' - Python
- How to Extract audio from video files using python?
- PermissionError: [Errno 13] Permission denied: 'shampoo_sales.csv' - Python
- [WinError 145] The directory is not empty: 'FolderPath' - Python
Related Article