Jquery Validation Example 2

12 years ago

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

Jquery Validation Example1

12 years ago

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%;…

What is normalization process?

12 years ago

Normalization is the process of efficiently organize a data in database.There are two goals of the normalization process:1 Eliminating redundant…

Second highest salary in MYSQL?

12 years ago

MY SQLWe have one tables tblSalaryempID     empName   empSal1              A    …

Customize wordpress register form wp_register()

12 years ago

wp_register display a link which allows the user to navigate to the registration page if not logged in and registration…

slideToggle example in jquery

12 years ago

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

How to select first div and change data of its.

12 years ago

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

Multiple image uplode with fixed size / thumb image code

12 years ago

Please understand code. May be for fresher it will difficult but all the things is not possible.Note :1 . Path…

Onmouse hover event change color of textbox in jquery

12 years ago

<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(){   …

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

12 years ago

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

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

12 years ago

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