Introduction:
We have learned many JQuery tutorials. this is JQuery example we are learning, how to call same method with different id using jquery.
Description:
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
</head>
<body>
<div>
<a href="javascript:void(0);" onclick="SomeAction(this);">
<span id="spnValue" >aspnettutorialonline.blogspot.com</span>
</div>
<div>
<a href="javascript:void(0);" onclick="SomeAction(this);">
<span id="spnValue1">jqueryexamplecode.blogspot.com</span>
</div>
<script>
function SomeAction(obj) {
var htmlVal = "";
skuList = $(obj).find('span').html();
alert(skuList);
}
</script>
</body>
</html>
If you have any queries or suggestions, please feel free to ask in comments section.
We have learned many JQuery tutorials. this is JQuery example we are learning, how to call same method with different id using jquery.
Description:
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
</head>
<body>
<div>
<a href="javascript:void(0);" onclick="SomeAction(this);">
<span id="spnValue" >aspnettutorialonline.blogspot.com</span>
</div>
<div>
<a href="javascript:void(0);" onclick="SomeAction(this);">
<span id="spnValue1">jqueryexamplecode.blogspot.com</span>
</div>
<script>
function SomeAction(obj) {
var htmlVal = "";
skuList = $(obj).find('span').html();
alert(skuList);
}
</script>
</body>
</html>
If you have any queries or suggestions, please feel free to ask in comments section.
Post a Comment
Please give your valuable feedback on this post. You can submit any ASP.NET article here. We will post that article in this website by your name.