LongFeiFengWu
Technical User
The objective is to copy a table on button click and then remove it from the page. When a 2nd button is click, I want to put that table back on the page with everything intact. This includes all entries users may have placed into the forms.
What I have so far:
ResolutionOFF = table copy and vanish
ResolutionON = bring table back
I have no idea what I'm doing, so any help will be greatly appreciated.
"If nothing within you stays rigid, outward things will disclose themselves. Moving, be like water. Still, be like a mirror. Respond like an echo." ~ Bruce Lee
What I have so far:
Code:
SUB ResolutionOFF_onClick()
LastHTML = table3.innerhtml
table3.innertext = ""
msgbox LastHTML
END SUB
SUB ResolutionON_OnClick()
row1.innertext = ""
table3.innertext = LastHTML
msgbox LastHTML
END SUB
ResolutionOFF = table copy and vanish
ResolutionON = bring table back
I have no idea what I'm doing, so any help will be greatly appreciated.
"If nothing within you stays rigid, outward things will disclose themselves. Moving, be like water. Still, be like a mirror. Respond like an echo." ~ Bruce Lee