Quote:
Originally Posted by DDH
Is there a way to display the popped element from an array into a text box.
|

Which text box? The entry box or a different one?
Assuming input box and code from post #5:
Code:
function dropEntry() {
if (backStack.length > 0) { var top0 = backStack.pop(); document.getElementById('TextBox1').value = top0; }
showStack();
}
You should try some of the modifications yourself to see how it works for future reference.