|
For each loop
This example shows iterating a list and map using jQuery.
03 | < script type = "text/javascript" src = "js/jquery.js" ></ script > |
04 | < script type = "text/javascript" > |
08 | $.each( [4,8,9], function(i, n){ |
09 | alert( "Index #" + i + " and value : " + n ); |
14 | //iterating over the properties in an Object |
17 | $.each( { name: "John", lang: "JS", age : "80" }, function(i, n){ |
18 | alert( "Property: " + i + ", Value: " + n ); |
26 | < input type = "button" value = "Test1" onclick = "test1()" /> |
28 | < input type = "button" value = "Test2" onclick = "test2()" /> |
|
|
|