Allow Only Numeric Value in Textbox Using JavaScript

Allow Only Numeric Value in Textbox Using JavaScript

When you create a form with an input box for getting mobile number or amount then you must restrict the user to enter an only numeric value. In this article, I am going to show you how to allow the user to enter only numbers in the input box.  To allow only numeric value in … Read more

Redirect Page after Certain Time using PHP, JavaScript or META Tag

Redirect Page after Certain Time using PHP, JavaScript or META Tag

Do you want to redirect the website after a certain amount of time or Page redirect after a certain time PHP? In this tutorial, we will see how to redirect a page after 5 seconds using PHP, JavaScript, and Meta tags. Here are some basic concepts to redirect a page after some time. These functions … Read more

Amount Field Validation Using JavaScript

When we work on any financial web application,we must use input field for amount value. Amount is very important field in any form so it must be validate before submit. This tutorial will help you  to understand how to validate amount field using JavaScript. HTML <input type=”text” name=”amount” id=”field” onfocusout=”checkAmount();”> JavaScript <script> function checkAmount() { … Read more