If you’re here, I’m sure it’s no surprise jQuery is an easy library to use. jQuery may be easy, but it still has its quirks and can be difficult for some to grasp beyond basic functionality and concepts. No worries, I’ve got a simple guide here to help break down code, that may seem like […]
jQuery
11 Multi-Touch and Touch Events JavaScript Libraries
Introduction Touch screen devices are ruling the mobile platform nowadays. Most of the smart phones have it, tablet and based on the trend, it’s slowly come to our desktop as well. To develop a touch screen compatible web applications or website, you can use the existing touch events of the browsers or the platforms. There […]
The Essentials of Writing High Quality JavaScript
1. Writing Maintainable Code Software bugs are costly to fix. And their cost increases over time, especially if the bugs creep into the publicly released product. It’s best if you can fix a bug right away, as soon you find it; this is when the problem your code solves is still fresh in your head. […]
Key Principles of Maintainable JavaScript
Why is it So Tough? The thing to remember, above all else when writing JS code, is that it’s a dynamic language. This means there are a lot of ways to do things. You don’t have to deal with strongly typed classes, or some of the more complex features from languages, like C# and Java. […]
Simplest Method to Custom Styling of The SELECT Elements
How it works The solution works in a way that it dynamically adds an additional SPAN element positioned absolutely below the SELECT element. This SPAN has a custom graphic that we want to apply. SELECT element’s opacity is set to zero so it is not visible but it’s clickable. Since the SELECT element is not […]
20 new jQuery plugins of Jun 2012
turn.js Turn.js is a JavaScript library that will make your content look like a real book or magazine using all the advantages of HTML5. The web is getting beautiful with new user interfaces based in HTML5; turn.js is the best fit for a magazine, book or catalog based in HTML5. The Wookmark jQuery plugin The […]
JWPlayer, Internet Explorer & Jquery Bug fix
So I just wanted to post this fix for all of those people out there that are using JWPlayer and jQuery to hide and show videos on Internet Explorer. In order to pause the video the video when the video is out of view, or hidden, you need to specify the following:
1 2 |
//the true parameter is KEY for IE jwplayer('playerID').pause(true); |
Another problem […]
jQuery.Callbacks() function, introduced in v1.7
The jQuery.Callbacks() function, introduced in version 1.7, returns a multi-purpose object that provides a powerful way to manage callback lists. It supports adding, removing, firing, and disabling callbacks. jQuery.Callbacks() A multi-purpose callbacks list object that provides a powerful way to manage callback lists. callbacks.add() Add a callback or a collection of callbacks to a callback […]
Brand New and Extremely Awesome jQuery Plugins
As we have discussed before, jQuery Plugins are there to assist you and let you perform the desired action in a more convenient and speedy manner. This selection of plugins is targeted at the designers and developers who want to extend their sites, create amazingly interactive websites that are attractive and accessible to the widest […]
10+HTML5 File Upload with jQuery Example
Essentially, during you are uploading files, it perfect to show progress bar or size byte stream of current upload, it is receiving a file so you know how many bytes you’ve received and somehow convey that information back to the client browser, while it is still in the process of uploading the file. You may […]