Select all previous tags and set styles in jQuery

Description

The following code shows how to select all previous tags and set styles.

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.  ja  v a2 s.  co m-->
    $("div").prevAll().css("background", "yellow");
  });
</script>
</head>
<body>
  <div>java2s.com</div>
  <div>java 2s.com</div>
  <div>java2s.c om</div>
  <div class="selected">java2s.c om</div>
  <div>ja va2s.com</div>
</body>
</html>

Click to view the demo





















Home »
  jQuery »
    jQuery Example »




Animation
DOM
Event
Form
List
Select
Style
Table
Utilities