Re: buttons are going off
Re: buttons are going off
Quote:
Originally Posted by
sujan.dasmahapatra
The image is coming but style1 button is going off (disappearing). How can I retain the buttons.
Last time I'm going to tell you this...Stop using forms for these implementations!
Forms are for sending data to the server. So...if you're using forms, your page is going to be reloading whenever you submit it...Therefore all your HTML/JavaScript data will be lost on the page.
I'm not going to continue to do your work for you. You've ignored all my advice the previous 4 times. If you ignore it again instead of trying to learn from it, I will not reply in any future thread.
Last help:
- Go and read/learn thoroughly from W3School's JavaScript tutorial. You NEED it.
- To hide/show HTML DOM elements, you need to change the CSS style. To hide, use display: none in CSS and obj.style.display = "none"; for JavaScript. To show it, use obj.style.display = ""; for JavaScript.