Hi, Today we will learn to write a very basic modular pattern of JavaScript. But before going ahead we should first familiar with what design pattern actually do.
Design pattern represents that code is written by experienced object oriented software developers.
So as we write daily multiple codes,...
Hi, Today we practice on validation from beginner to advanced.
First we will grab js file required files jquery.js and jquery.validate.min.js
Jquery has validate function where we can write rule for our controls and gives properties to validate and in case if it not validate we can write error messages.
lets create a basic validation code in jquery.
<form name="validationform"...
Our Aim is to create a feature which can search multiple brand, multiple colors type products.
For this we first need to create form which contain multiple checboxes to filter, even you can also show checkbox of brand available from database. But in this post i am normally going to show you how normally...
For this to be working we need a simple html range slider, so you can use simple Min <input type="range" id="sliderange" min="1" max="200" /> Max
in which i have used min and max val for sliding value. You can go much better by using any free customized jquery range sliders.
Normally...