I need help with a basic text input field calculator. Where if someone puts 1+1 etc. It will answer the problem in another text input field but I can not figure out how to with my code below any help would be appreciated.
function Cal() {
var Num = parseInt(document.getElementById("Numbers").value);
var One = Num;
alert(One);
I only have it where it notifys me the answer.