JQuery

Difference Between remove(), hide(), and empty() Methods in jQuery

The methods remove(), hide(), and empty() in jQuery are used to edit or manage components on a webpage, but they…

11 months ago

How To insert data into database using PHP Ajax

Insert data into MySQL using jQuery ajax without page refresh. Today we are going to learn how to to submit…

2 years ago

Dynamic Bootstrap Thumbnail Gallery with JavaScript

This tutorial based on bootstrap grid gallery with modal. Download the files from Github. Note that you will need to…

6 years ago

How to Select active menu Item using jquery

Most of the developer has an issue to select active menu in the same header. So here we try with…

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

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

12 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…

12 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.…

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

12 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…

12 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…

12 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…

12 years ago