How to Add values from checkboxes

How to Add values from checkboxes

    Hello Everyone,
    I am trying to sum the values from the selected checkboxes ... But so far what i am getting is like 2,3...what i want is 5....Can anybody help me out to get this logic please. Thanks!!!!

    1. <html>
    2. <head>
    3.   <title>jQuery With Example</title>
    4.   <script src="http://code.jquery.com/jquery-1.9.1.js" 

    5. type="text/javascript"></script>
    6.   <script type="text/javascript">
    7.     $(function () {
    8.       $('.btnGetSelectedValue').click( function(){
    9.         var chkId = '';
    10.         $('.chkNumber:checked').each(function() {
    11.           chkId += $(this).val() + "+";
    12.         });
    13.    /*     chkId =  chkId.slice(0,-1); */
    14.         alert(chkId);
    15.       });

    16.      

    17.     });
    18.   </script>
    19. </head>
    20. <body>
    21.   <div>
    22.     <input type="checkbox" class="chkNumber" value="1" />One<br />
    23.     <input type="checkbox" class="chkNumber" value="2" />Two<br />
    24.     <input type="checkbox" class="chkNumber" value="3" />Three<br />
    25.     <input type="checkbox" class="chkNumber" value="4" />Four<br />
    26.     <input type="checkbox" class="chkNumber" value="5" />Five<br /><br 

    27. />
    28.   </div>
    29.   <button type="button" 

    30. class="btnGetSelectedValue">GetSelectedValue</button><br />

    31. </body>
    32. </html>