Select disabled button

Description

The following code shows how to select disabled button.

Example


<html>
<head>
<script
  src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
  $(document).ready(function() {<!--from  w w w . j  a  v a 2s  .c o  m-->
    $("button[disabled]").nextAll("span").text("data");
  });
</script>
<style>
.y {
  background: yellow;
}
</style>

</head>
<body>
  <div>
    <button disabled="disabled">First</button>
    - <span class="selected"></span> <span></span>
  </div>

</body>
</html>

Click to view the demo





















Home »
  jQuery »
    jQuery Example »




Animation
DOM
Event
Form
List
Select
Style
Table
Utilities