Just a quick note alerting everyone to the fact that jQuery has gotten EVEN EASIER AND FASTER.
Go check out the release notes.
Many (awesome) changes http://blog.jquery.com/2010/01/14/jquery-14-released/.
View the release notes here: http://jquery14.com/day-01/jquery-14
19 Dec
by: Matt in Development, JavaScript
tags: 1.4, JavaScript, jquery, jquery 1.4
The wonderful folks over at jQuery have released Alpha 2 of version 1.4 for all those testers out there.
1.4 is slated for official launch on January 14th – how cute :)
Just wanted to mention that jQuery 1.4 Alpha 1 has been released.
Most of the changes seem to revolve around heavy optimization of some core functionality. Installing this alpha and testing in live applications will help get this release out!
30 Nov
by: Matt in Book Reviews, CSS, Clojure, Development, Django, Infrastructure, JavaScript, PHP, Python, Ruby, Ruby on Rails
tags: book review, clojure, Development, Django, php, programmer, Python, rails, ruby, Ruby on Rails
Send this to your significant other/parent/relative/friend so, instead of that sweater, you get one of these nuggets of awesome this Christmas.
The Pragmatic Programmer: From Journeyman to Master
Write better, cleaner, more maintainable code. Learn how to manage your projects and focus on shipping your product. With insight that covers the gamut of software development [...]
04 May
by: Matt in Development, JavaScript, PHP
tags: ajax, JavaScript, lighttpd, long polling, nginx, php
Background
“Long polling” is the name used to describe a technique which:
An AJAX request is made (utilizing a javascript framework such as jQuery)
The server waits for the data requested to be available, loops, and sleeps (your server-side PHP script)
This loop repeats after data is returned to the client and processed (usually in your AJAX request’s onComplete [...]
06 Feb
by: Matt in Development, JavaScript
tags: JavaScript, prototype, round, rounding
This very simple function does exactly what the title suggests, it allows you to round to any specified accuracy.
function roundTo(number, to) {
return Math.round(number * to) / to;
}
alert(roundTo(1532, 100)); // 1500
alert(roundTo(26, 10)); // 30
If you want to get fancy, you could also modify the Number prototype for a more “integrated” solution.
Number.prototype.roundTo = function(to) {
return Math.round(this * [...]
05 Feb
by: Matt in Development, JavaScript, PHP
tags: embed, JavaScript, php, SCRIPT
For an internal project I’ve been working on I have to provide embeddable versions of internal tools for deployment on remote partner sites.
I achieved this in my framework through, what I call, output format filters. Let’s say you have an action “cloud” in a controller “markets”. The URL to access this resource in [...]
Just a quick note.
I waited for the 1.3.1 release of jQuery to make sure all major bugs had been resolved (brand new selector engine). This weekend I decided to go for the upgrade. Flawless. Even the plugins all worked as expected.
Fantastic job.
The official jQuery blog has announced the availability of jQuery 1.3b1. They’re asking for testers to iron out remaining bugs – looking to release on January 14th.
Major changes include:
Selector Engine – The selector code has undergone a complete rewrite – it’s likely that some edge cases still exist here.
DOM Manipulation (append/prepend/before/after) – This code [...]
WP Cumulus Flash tag cloud by Roy Tanck and Luke Morton requires Flash Player 9 or better.