How to Show message instead of alert
By FoxLearn 2/16/2024 9:42:37 AM 271
To show a message instead of using the alert box you can insert a hidden div on your form and show it instead of using the alert.
Add a class to div tag
<div class="message-box"></div>
and javascript
<script> $(".message-box").text("Welcome to foxlearn.com !").show(); </script>
Categories
Popular Posts
11 Things You Didn't Know About Cloudflare
12/19/2024