Convert data from span, parse and update : Span « jQuery « JavaScript DHTML






Convert data from span, parse and update

 
<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
        
            

            $("button:first").click(function () {
              update($("span:first"));
            });
            $("button:last").click(function () {
              $("button:first").trigger('click');
        
              update($("span:last"));
            });
        
            function update(j) {
              var n = parseInt(j.text(), 0);
              j.text(n + 1);
            }

               


        });
    </script>

  </head>
  <body>
    <body>
          <button>1</button>
          <button>2</button>
        
          <span>0</span> /
          <span>0</span> 
                 
    </body>
</html>

   
  








Related examples in the same category

1.Append to another tag
2.Click to change span text
3.Set span color
4.Span click event
5.Wraps a newly created tree of objects around the spans
6.Animates span to hide fastly
7.Finds the last span in each matched div and adds some css plus a hover state.
8.Finds the first span in each matched div to underline and add a hover state.
9.Animates all span and input elements to show normally