Latest Free jQuery Plugins
Web developers have become more resourceful and work faster with jQuery which are simple to use instruments. These jQuery are simple to use and are a no fuss instruments. Since they are written in...
View Article14 Useful jQuery Plugins for Creating Sticky Elements
Sticky elements are a fun way of improving the navigation and display ads on a web page. The sticky elements and headers make it easy to reach the menu without having to scroll to it every time. These...
View Article7 Awesome JavaScript Libraries for Drawing
The uses of JavaScript are definitely countless when adding extended features in Web Browsers. JavaScript library is a library of pre-written JavaScript which allows for easier development of...
View Article11 Free jQuery Rating Plugins
Developers who are working on a e-commerce platform or an app, know the importance of a rating system. These plugins will help designers to create a cool and customized rater for their page. 1. jRating...
View Article10 Very Useful jQuery Captcha Plugins
We’ve all come across Captcha programs or systems allow web developers to differentiate between the bots, malicious software and humans. Web developers often require the use of jQuery Captcha plugins...
View Article8 Awesome jQuery Image Rotation Plugins
E-Commerce Websites have become really popular with consumers who now don’t have to leave the house to shop. Using jQuery plugins to develop websites that can allow consumers to view every angle of a...
View Article5 Easy jQuery Scrolling Plugins for One Page Websites
As more and more people browse the web on their tablets and mobile devices, web design trends continue to point towards single-page parallax scrolling sites, which seamlessly create a positive user...
View ArticleFour free online Java compilers
Java codes are one of the most popular methods of developing software. Multiple online java code compilers are available which help to edit, compile and even publish so that designers don’t have to...
View ArticlejQuery Prefixes: jQuery vs. $
It's a really common practice in jQuery to use the dollar sign ($) prefix with your methods, like this: $(document).ready(function(){ $(#myDiv).slideUp(); }) The above code would make the div with the...
View ArticleDisable Links with jQuery
jQuery's built in preventDefault() method is a great way to prevent the default functionality of an element from occurring. It's probably most commonly used to disable links. Maybe you want a certain...
View ArticleUsing Method Chaining in jQuery
When you use method chaining in jQuery, it ensures that you never have to use the same selector more than once. Over-using a selector can seriously slow down your code, as every time you call on a...
View ArticlejQuery: Showing/Hiding HTML Elements Based on Scroll Position
Showing/hiding any HTML DOM element is a common scenario based on various business requirements. Since the time of SPA (single page application) is evolved, you will find that on scroll position of...
View ArticlejQuery’s .find() Method
In jQuery, the .find() method is used to return descendent elements of the selected element. Basically, you can use it when you want to apply jQuery to all the descendants of a particular element. You...
View ArticlejQuery’s .attr() Method
In jQuery, the attribute or .attr() method is used to set the attributes values of selected elements. It works similarly to the .css() method, except with .attr(), you're not setting or changing the...
View ArticlejQuery: Enable Click Event for Some Anchor Elements
jQuery provides a very easy way to disable click events for any DOM element. And you can also disable click event for all Dom elements with few lines of code. But then what if you want to enable click...
View ArticleSnippets: Disable Scroll Using jQuery
Most developers probably wouldn’t want to disable scroll on their pages, but of course, there are always exceptions to any rule, and there are a number of reasons that scroll may need to be disabled....
View ArticlejQuery.parseJSON vs JSON.parse
JSON.parse() and jQuery.parseJSON(), both are used to parse a JSON string and returns resulting JavaScript value or object described by the string. jQuery.parseJSON() is available only when jQuery...
View ArticlejQuery Snippet: Enable Submit if Input Field has Value
A cool thing that jQuery allows you to do is enable and disable certain elements based on particular conditions. The following snippet shows you how to enable a submit button that has been disabled if...
View Article5 Awesome Free jQuery Calendars for Your Next Project
There are so many free jQuery calendar projects out there that it can definitely be overwhelming when it comes to choosing one to include in your next project, which is why we’ve compiled this handy...
View ArticleUsing jQuery to Check All Boxes
If you want to include a “check all” option in any of your projects, it’s actually pretty easy to do using jQuery. The snippet below demonstrates how to include a check all button that will check all...
View Article