Map value function : map « jQuery « JavaScript DHTML

Home
JavaScript DHTML
1.Ajax Layer
2.Data Type
3.Date Time
4.Development
5.Document
6.Dojo toolkit
7.Event
8.Event onMethod
9.Ext JS
10.Form Control
11.GUI Components
12.HTML
13.Javascript Collections
14.Javascript Objects
15.Javascript Properties
16.jQuery
17.Language Basics
18.Mochkit
19.Mootools
20.Node Operation
21.Object Oriented
22.Page Components
23.Rico
24.Scriptaculous
25.Security
26.SmartClient
27.Style Layout
28.Table
29.Utilities
30.Window Browser
31.YUI Library
JavaScript DHTML » jQuery » map 
Map value function
     
<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
           $("p").append$("input").map(function(){
             return $(this).val();
           }).get().join(", ") );



        });
    </script>

  </head>
  <body>
    <body>
      <p></p>
      <form>
        <input type="text" name="name" value="A"/>
        <input type="text" name="name" value="B"/>

      </form>

  </body>
</html>

   
    
    
    
    
  
Related examples in the same category
1.Add LI to UL
2.Add node to tag
3.Map each parents
4.Map to join strings
5.Map value only
6.Map value with index and value
7.Traversing-Map
8.Map and split
9.Map and isNaN
10.map(callback) builds lists of values, attributes, css values
11.Map and index
12.Find all parent elements of each paragraph.
13.Use map to join the selected tag names
14.map function and switch
15.Nested map and each function
16.Use variable defined outside in map function
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.