Return true as continue statement : each « jQuery « JavaScript DHTML






Return true as continue statement

 

<html>
  <head>
    <script type='text/javascript' src='js/jquery-1.3.2.js'></script>
    <script type='text/javascript'>
$(document).ready(
  function() {
    $(['A', 'B', 'C', 'D'])
      .each(
        function() {
          if (this == 'A') {
            return true;
          }
          $('ul').append(
            "<li>" + this + "</li>"
          );
        }
      );
  }
);
    </script>

  </head>
  <body>
     <ul>
     </ul>
  </body>
</html>

   
  








Related examples in the same category

1.Loop through each tag
2.each function callback
3.Each span tag
4.For each array element
5.For each function with index and value
6.Use Each Function To loop through Selected Item
7.Each function and array
8.Each function and map array
9.Use 'return' to break out of each() loops early.
10.Get each loop index
11.Use foreach to create li
12.Hard code value into each function
13.Append value with each function
14.Use each function to add class