jquery


jQuery Context Menu

jQuery Simple Context Menu

In this tutorial I am sharing my newly created jQuery Plugin, jQuery Simple Context Menu. GITHUB REPO : https://github.com/nirajmchauhan/jquery-simple-context-menu Currently this plugin accepts two paramenters: Custom HTML – You have to give entire HTML code with proper attributes in it wrapped inside ul Simple HTML – You have to pass href link and the text Read more...

 

How To Make A Chat Program In Node JS

NodeJS

Today we will start with NodeJS. So what is NodeJS? In simple terms, JavaScript on server side. NodeJS uses Googles V8 engine. Its basically a javascript library which is executed on server side. Its also known as JavaScript without browser. When and why to use nodejs? Choosing a technology depends on the developer who is Read more...

 

jQuery Form Validation Plugin

jqueryValidation

If you are developing websites then you will come across Form validation. I too and I was using jQuery Validation plugin. This is an awesome plugin but really buggy in IE7/8 browser with different jQuery versions. Its not stable and the developer of this plugin is not looking after the bugs. I reported several times Read more...

 

JQuery Treeview List

js

JQuery Treeview List – Creates a nice expanding and collapsing tree view control using jQuery. Tree view Displays a hierarchical collection of labeled items, each represented by a TreeNode. This you’ll normally see in windows or MAC folder navigation. Today I am making it in JQuery for ul, li list. Basic HTML Markup We just Read more...

 

AJAX Contact Form With Validation

JQUERY-AJAX

Today I am going to share a simple tutorial on How to make a AJAX contact form with validation. What is AJAX? AJAX allows web pages to be updated asynchronously by exchanging small amounts of data with the server behind the scenes. This means that it is possible to update parts of a web page, Read more...

 

JQuery Allow Only Numbers

For a frontend developer when it is asked to do something unique that person will think of JQuery first. Today a simple jquery code to allow only numbers to a text-box. Below code will allow following key events : Backspace Delete Tab Escape Enter Ctrl+A Home end left right Just add a class to textbox Read more...