Make Div Stick to The Bottom of Page

Make Div Stick to The Bottom of Page

As a web developer, everyone need sometimes to make a div stick to the bottom of a web page. Generally, I got a lot of questions related to this topic but don’t found the complete guide. In this tutorial, I am going to share with you a complete tutorial on how to create a fixed … Read more

2 Simple Steps to Create Top Navigation Bar

In this tutorial we are going to see how to create top navigation bar. Navigation bar is the most important part of any website or blog. So here we are going to use the 2 simple steps to create navigation bar with HTML and CSS. 1. Write Markup <div class=”nav”> <ul> <li class=”home”><a href=”#”>Home</a></li> <li … 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