Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 0.75 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <html>
  2.         <head>
  3.                 <title>jQuery Each Example</title>
  4.                 <script type="text/javascript" src="print_r.min.js">
  5.                 </script>
  6.                 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js">
  7.                 </script>
  8.                 <script type="text/javascript">
  9.                         var titleArray = [];
  10.                         $(document).ready(function(){
  11.                                 $(".title").each(
  12.                                         function(index) {
  13.                                                 titleArray[index] = $(this).val();
  14.                                         }
  15.                                 );
  16.                                 echo("<pre>" + print_r(titleArray, true) + "</pre>");
  17.                         });
  18.                 </script>
  19.         </head>
  20.         <body>
  21.                 <input type="text" class="title" value="Hello,"/>
  22.                 <input type="text" class="title" value="World!"/>
  23.                 <input type="text" class="title" value="Foo"/>
  24.                 <input type="submit" class="title" value="Bar"/>
  25.         </body>
  26. </html>