+ 2
Hello guys how can I hide a form section and show another html content with the submit button in JavaScript??
Showing a hidden content with JavaScript
2 Réponses
+ 1
Better use jQuery because it has hide() and show() methods.
+ 1
listen for submit event ,prevent default action ,make the form display to none and another html content to block which you must have set to none , hopefully you got an idea !