tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 jQuery > Basic > For each loop

For each loop 

This example shows iterating a list and map using jQuery.

File Name  :  
source/JQUERY/basic/foreach.html 
Author  :  Sudhakar KV
Email  :  kvenkatasudhakar@gmail.com
01<html>
02<head>
03<script type="text/javascript" src="js/jquery.js"></script>
04<script type="text/javascript">
05 
06   function test1() {
07 
08       $.each( [4,8,9], function(i, n){
09           alert( "Index #" + i + " and value : " + n );
10       });
11 
12   }
13 
14   //iterating over the properties in an Object
15   function test2() {
16 
17       $.each( { name: "John", lang: "JS", age : "80" }, function(i, n){
18         alert( "Property: " + i + ",   Value: " + n );
19       });
20 
21   }
22 
23</script>
24</head>
25<body>
26   <input type="button" value="Test1" onclick="test1()" />
27   <br>
28   <input type="button" value="Test2" onclick="test2()" />
29</body>
30</html>




 
  


  
bl  br