View Single Post
  #3 (permalink)  
Old May 29th, 2007, 10:22
TheSealPortalTeam's Avatar
TheSealPortalTeam TheSealPortalTeam is offline
User of Users

SuperMember
Join Date: May 2007
Location: Buffalo
Posts: 322
Blog Entries: 15
Thanks: 23
Thanked 1 Time in 1 Post
Re: I need help java isn't adding when its supposed to

thanks, I can also do this
Code: Select all
  <script language="JavaScript" type="text/javascript">
    function AddStrength(args)
    {
        //Specifically add strength while decreasing total points
        var value1 = 0;
        value1 = document.getElementById("ctl00_ContentPlaceHolder1_txtStrength").value;
        var value2 = 0;
        value2 = document.getElementById("ctl00_ContentPlaceHolder1_txtTotalPoints").value;
        if (value2 == 0){
        alert("You have maxed out your total points");
        }
        else{
        document.getElementById("ctl00_ContentPlaceHolder1_txtStrength").value = value1 -=(-1) ;
        document.getElementById("ctl00_ContentPlaceHolder1_txtTotalPoints").value = value2 -=1 ;
        }

    }
    </script>
Reply With Quote