I\'m using jQuery to retrieve a value submitted by an input button. The value is supposed to be an integer. I want to increment it by one and display it.
//
var count = parseInt(countUp, 10) + 1;
See w3schools webpage for parseInt.