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

Property Iteration 

This example shows iterating object properties using jQuery API and direct java script.

File Name  :  
source/JQUERY/basic/propiteration.html 
Author  :  Sudhakar KV
Email  :  kvenkatasudhakar@gmail.com
01<html>
02<head>
03<script src="js/jquery.js" type="text/javascript"></script>
04<script type="text/javascript">
05function test() {
06 
07    var obj = {
08        foo: "bar",
09        baz: "quux"
10    };
11 
12    //Property iteration using direct java script
13    for(var prop in obj) {     
14            alert(prop + "--->" + obj[prop]);
15    }
16 
17    //Property iteration using jQuery
18    jQuery.each(obj, function(name, value) {
19        alert(name + ": " + value);
20    });
21 
22}
23</script>
24</head>
25<body>
26 
27    TEST <input type="button" value="Test" onclick="test()" />
28 
29</body>
30</html>




 
  


  
bl  br