JavaScript

Pan Card Validation Using Javascript

When we start to work on Pan Card for us very difficult part is pan card validation. We tried many…

12 years ago

Phone Number Validation Javascript

Phone number validation is an important part of validating an HTML form. On this artilce we will discussed how to…

13 years ago

Jquery Validation Example 2

Fresher need to understand jquery validation. So we have made very easy to understand example as follows.<!DOCTYPE HTML PUBLIC "-//W3C//DTD…

13 years ago

Jquery Validation Example1

http://docs.jquery.com/Plugins/Validation Same Example Try in above link with demo  <html><head> <script src="https://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript" src="https://jzaefferer.github.com/jquery-validation/jquery.validate.js"></script><style type="text/css">* { font-family: Verdana; font-size: 96%;…

13 years ago

slideToggle example in jquery

Simple Javacript and HTML sample code for Jquery Toggle. In this blog whatever we are putting all are working and…

13 years ago

How to select first div and change data of its.

Most of the time we need to select first div that time we are just thinking what need to do.…

13 years ago

Onmouse hover event change color of textbox in jquery

<html><head><meta http-equiv="Content-type" content="text/html; charset=utf-8" /><title>jQuery test</title><style>body {font-family:arial;}</style><head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script> <script type="text/javascript"> //runs once page is loaded and ready to be manipulated    $(document).ready(function(){   …

13 years ago

difference between window.onload() and $(document).ready()

window.onload()the main difference is that document.ready() event gets called as soon as your DOM is loaded. It does not wait…

13 years ago

difference between remove() , hide(), empty.

empty It will remove all child element of selected divhide It will only hide from for.removeIt will remove selected element…

13 years ago

How to find checkbox checked using jquery?

In Jquery is a very easy solution to check checkbox selected or not. For that, you have to first know…

13 years ago