In my latest program, there is a button that displays some input popup boxes when clicked. After these boxes go away, how do I hide the button?
If you are not using jQuery I would suggest using it. If you do, you would want to do something like:
$( 'button' ).on( 'click' function ( ) { $( this ).hide( ); } );