JQuery Tutorial 22 - this keyword or this selector example

JQuery Tutorial 22 - this keyword or this selector example 

Using below tutorial we have learnt about Multiple selectors in Jquery. In this tutorial we will learn about jQuery this keyword usage. Please watch below video for reference.

<!doctype html>
<html lang="en">
<head>
<title>JQueryexamplecode.blogspot.com</title>
  <script type="text/javascript" src="js/jquery.js"></script>
</head>
<body>
<input type='button' value='click me' id='btnClick' />
<script>
$(':button').click(function(){
$(this).attr('value','Please wait...');
$(this).attr('disabled','disabled');
$(this).css('background-color','yellow');
})
</script>
</body>
</html>




 If you have any queries or suggestions, please feel free to ask in comments section.
Share this post :

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.

 
Support : Ranga Rajesh Kumar
Copyright © 2012. ASP.NET Examples - All Rights Reserved
Site Designed by Ranga Rajesh Kumar