Parallax scrolling is one type of scrolling technique in terms of web design in which backgrounds images move according to the scroll, some images move around other object, some images has 2D transformation effects and transition effects. Parallax scrolling is very useful for unique and one page website design to attract the user with its […]
Jquery
Best Jquery Range Slider That Can Be Used As Price Range Slider Control
Range slider is a very useful control to provide function between to range of numbers that can be easily selected using the control rather than manually enter the amount. Here I am going to write list of some popular Jquery range slider that can be easily integrated withing any programmatic language into your website page. […]
Best jQuery UI Frameworks for Web Designers
Jquery UI is essential requirement for the web designer and web developer and Without the use of Jquery UI framework its hard to create the good user friendly website design. Today users are not limited to only desktop but the users use mobile and tablets and Its needs good UI and user friendly website because […]
JQUERY AJAX POST USING PHP
Meaning of Jquery Ajax is to retrieve the data from server side to client side or to post data from client side to server side. Jquery Ajax call can be Get or Post method with any kind of server technology like php,asp,.net or any other server side programming technology. To request a Jquery ajax call we need a set […]
BEST JQUERY FILE UPLOAD
Most of the web site require the File upload functionality, Its normal script that can be done using the html file upload control and php script. But today it require user friendly and fast file upload with progress bar. We know variety of the file upload script available over the internet which includes jquery file […]
BEST JQUERY PLUGINS FOR ANIMATION
A jQuery plugin is the best plugin for the today web development for the all cross browser compatibility and user friendly environment for the web sites. Lots of jquery plugins are available on the online but here we are going to list the some best ever plugins for the animation using jquery which are used to make […]
VALIDATE DROPDOWN IN JQUERY
When we build the form for any input then its required to validate the form before we submit form to the server. We required the variety of the validation like text box validation for input character in jquery, check box selection validation jquery and dropdown validation in jquery. we can do it both client side and server side validation. But […]
BEST JQUERY PLUGINS FOR TOOLTIP
The tooltip is just small information displayed on the any control when mouse hover or click on that html control. Some year ago, actual tooltip is yellow box with regular text but today its changed to simple and basic cross-browser tooltip with many fancy and good look. Most of them are built using the jquery and animation effects plugin.Many […]
Checkbox Validation In Jquery
If you required to validate the checkbox selection before submitting the form on submit button. Then this tutorial will help you to make alert popup if checkbox is not selected after submit button pressed. See the following line of code and place this code before the </head> tag of your html web page. // you must include this line and if you […]
CHECK UNCHECK CHECKBOX USING JQUERY
To check the check box we can use the .attr() property and we can set the checked property of the checkbox to true , but it not support invert of it means if we want to do the uncheck that checkbox again. There is another function .prop() of jquery which will be used to check or uncheck the checkbox using the jquery. […]