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

 

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

 

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

 

Simple JQuery Tabs

JQuery Tabs

JQuery tabs. Whenever I start any new project tabs is something which I have to use, so instead of using any external js library I created a small function. First we are creating a div with a class name, this class name is really important. This class name will be passed in entire tabs, just Read more...