Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to make a calculator for summation.

I write number, then i click on button + , and then i enter second number, and then i click on Submit button and get value in input.

I am getting values from input with this:

var something = document.getElementById('inputid');
var newvalue = something.year.value;

Can anyone help me with this?

share|improve this question
2  
It looks like you're off to a good start. What problem are you having now, specifically? – maerics Oct 20 '12 at 14:12
What have you tried so far? Where are you getting stuck? – Joost Oct 20 '12 at 14:12
The operator + will help you :) – Alvin Wong Oct 20 '12 at 14:42

migrated from webmasters.stackexchange.com Oct 20 '12 at 14:07

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.