Resources for JavaScript and DOM Compatibility Tab

9 years ago
One of the best info-apps to come about in recent years is the well-known and super-practical Can I Use byAlexis Deveria. Although Can I Use is great for many cutting-edge features, there’s still a lot of JavaScript and DOM stuff that’s not included in there. So what other options are there ...

Select2

9 years ago
Select2 is a jQuery based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results. http://ivaynberg.github.io/select2/ GIT https://github.com/ivaynberg/select2

Here Are 10 jQuery Snippets Every Designer Should

9 years ago
1.Back to top button // Back To Top $(‘a.top’).click(function(){ $(document.body).animate({scrollTop : 0},800); return false; }); //Create an anchor tag Back to top -There’s no need to use a plugin to create a simple scroll to top animation in jQuery. By simply changing the scrollTop value ...

5 Ways to Make Ajax Calls with jQuery

10 years ago
There are at least five ways to make AJAX calls with the jQuery library. For beginners, however, the differences between each can be a bit confusing. In this tutorial, we’ll line them up and make a comparison. Additionally. we’ll review how to inspect these AJAX calls with Firebug as well. ...

jQuery: What’s the difference between height, inne

11 years ago
I was surprised to find there is no simple online comparison giving an overview of the difference between JQuery’s height, innerHeight and outerHeight. It’s really quite simple and is down to whether the calculation factors in padding, border and margin. Here’s the summary: Padding Border ...