dreamwest Posted March 17, 2011 Share Posted March 17, 2011 Im trying to get an innerhtml value to increment by 1 <script> function up(){ document.getElementById("cnt").innerHTML = document.getElementById('cnt') + 1; } </script> <span id='cnt'>0</span> <span style='cursor:pointer;' onclick='up(); '>Go up</span> Quote Link to comment Share on other sites More sharing options...
gristoi Posted March 17, 2011 Share Posted March 17, 2011 the innerHTML needs converting into an Integer / Float etc before a mathimatical function can be performed. Try: <script> function up(){ var field = document.getElementById("cnt").innerHTML; var value1 = parseInt(field); document.getElementById("cnt").innerHTML =value1 +1; } </script> <span id='cnt'>0</span> <span style='cursor:pointer;' onclick='up(); '>Go up</span> Quote Link to comment Share on other sites More sharing options...
dreamwest Posted March 17, 2011 Author Share Posted March 17, 2011 sweet! Thanks Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.