Archive for 'jQuery'
Create a Slick Tabbed Content Area using CSS & jQuery
April 23, 2008 | Filed under: jQuery
One of the biggest challenge to web designers is finding ways to place a lot of information on a page without losing usability. Tabbed content is a great way to handle this issue. Today we’re going to build a simple little tabbed information box in HTML, then make it function using some simple Javascript.
Spoiler Blocker When JS Isn’t Available
April 17, 2008 | Filed under: jQuery
Ever gone to a site to read up on your favorite show or get the lowdown on a new movie only to have the whole plot spoiled because you weren’t forewarned that the “whole freakin’ script” was injected into the article?!?! Yeah, I’ve been there and it ain’t fun!
Chris Coyier of CSS-Tricks came up with a solution called …
Server-side jQuery, E4X, and more with Jaxer
April 14, 2008 | Filed under: jQuery
Davey Waterson of the Aptana Jaxer team has posted an article on using jQuery on the server-side with E4X and more that shows an example of server-side Ajax with a popular framework.
The article describes a polling application that features:
Using jQuery server-side to manipulate a DOM before it’s sent to the client
Doing some database / SQL interactions, server-side in javascript …
John Resig at Northeastern University, great presentation.
April 4, 2008 | Filed under: jQuery
Great presentation coming from Jhon Resig - creator of JQuery about JavaScript and JQuery.From basics to Pro.
GQuery: Java, GWT, and jQuery together
April 4, 2008 | Filed under: jQuery
Are you a fan of GWT but would like toms jQuery magic mixed in? Ray Cromwell has your back, as he has created GQuery, an implementation of jQuery for GWT.
This means that you can write code like this:
PLAIN TEXT
JAVA:
public void onModuleLoad() {
$(”div”).css(”color”, “red”).click(new Function() {
public void f(Element e) {
…
ppDrag - Extremely Fast JavaScript Drag’n'Drop
April 3, 2008 | Filed under: jQuery
ppDrag is a Drag&Drop plugin for jQuery, which mimics the interface of jQuery UI’s Draggable. Currently supported is a small subset of its options, but the implementation is different (ppDrag focuses on performance). All major existing browsers are supported. This includes IE6/7, Firefox1/2/3, Opera, Konqueror, Safari, etc.
jQuery gets Classy
April 1, 2008 | Filed under: jQuery
Finally, you can throw away the concise jQuery code, and you can instead grab a more verbose version Classy Query, that John Resig has provided.
This extra verbosity is perfect for a compiler or a document parser. The important people.
You can now write code like this:
PLAIN TEXT
HTML:
<script src=”jquery.js”></script>
<script src=”classy.js”></script>
jQuery.Events.addEventListener(document, "ready", function(){
jQuery.querySelectorAll("div").forEach(function(elem){
jQuery.DOM.append(elem, " …
Create a JavaScript slider with callout effect using jQuery
March 31, 2008 | Filed under: jQuery
The problem with most UI slider elements (and the reason sliders are hardly used) is because there’s rarely any direct feedback to the user as to what’s being selected. This screencast / demo attempts to solve that problem and allows the slider to be a viable input element in any web application.
Browser CSS float error detection with jQuery
March 31, 2008 | Filed under: jQuery
Mario Heiderich of Ormigo has created a jQuery based code snippet/bookmarklet that is capable of detecting floating errors and adding a dotted orange border to elements which should be cleared - but aren’t.
It saved me a huge bunch of time debugging complex layouts for all browsers - especially IE6. If jQuery isn’t already loaded on the …
Some Cool & Funky But Basic jQuery Examples
March 28, 2008 | Filed under: jQuery
Some little cool & funky effects that can be very easily created using the powerful Javascript library jQuery. Includes color animation, basic animating & how to replace content in a HTML element.
JavaScript and jQuery Talk
March 28, 2008 | Filed under: jQuery
John Resig has published his JavaScript and jQuery talk that he gave at Northeastern. What does he cover?
I covered the basics of JavaScript - targeted to a Computer Science major (in the case of the students at NU, they learn Scheme and Java so I emphasized the subject matter to that audience). I did a fast run-through of the …
jQuery File Tree
March 27, 2008 | Filed under: jQuery
jQuery File Tree is a configurable, AJAX file browser plugin for jQuery. You can create a customized, fully-interactive file tree with as little as one line of JavaScript code.
Making a Slider Accessible Using JQuery
March 26, 2008 | Filed under: jQuery
Illustrations and code samples showing how to make a slider UI control accessible to those who aren’t running JavaScript or CSS.
markItUp! jQuery Universal Markup Editor
March 23, 2008 | Filed under: jQuery
markItUp! is a JavaScript plug-in built on the jQuery library. It allows you to turn any textarea into a powerful and flexible markup editor. Html, Textile, Wiki Syntax, Markdown, BBcode or even your own markup system can be easily implemented.
Why getBoundingClientRect is important
March 20, 2008 | Filed under: jQuery
We posted about PPK’s thoughts on CSSOM which included him dissing getBoundingClientRect() and getClientRects():
I feel this part of the specification is not yet ready. At the very least, the relation of TextRectangle boxes to actual elements should be defined in the case there’s more than one TextRectangle box, because I don’t understand what to expect (and I suspect browser …
jQuery Worldwide Sprint a huge success
March 19, 2008 | Filed under: jQuery
The jQuery Worldwide Sprint (see previous post) is over, and it was a wonderful momentum and great experience for many of us.
We made great use of the sprint wiki page during the sprint, and it now serves as a reference of what we accomplished, including meeting summaries and irc logs.
We moved a lot closer to jQuery UI 1.5, …
XHTML 1.0 Damn Small Rich Text Editor using jQuery
March 14, 2008 | Filed under: jQuery
A free javascript code to create a small-footprint RTE component. Uses jQuery.
JavaScript Input Masks
March 14, 2008 | Filed under: jQuery
A list of great JavaScript input masks including jQuery and Mootools plugins other than the standalone ones.
Galleria jQuery Image Gallery Script
March 10, 2008 | Filed under: jQuery
Galleria jQuery Image Gallery Script March 5, 2008 in Scripts and Software Galleria is a jQuery based javascript image gallery that loads images one by one from an unordered list and displays thumbnails when each image is loaded. It can create thumbnai
Interface Elements for jQuery - Real examples of Interface
March 8, 2008 | Filed under: jQuery
Interface is a collection of rich interface components which utilizes the lightweight JavaScript library jQuery. With this components you can build rich client web applications and interfaces with the same simplicity as writing JavaScript with jQuery.
jQuery UI Worldwide Sprint: March 14-15
March 7, 2008 | Filed under: jQuery
The jQuery UI Team is pleased to announce its first Worldwide Sprint, to take place next Friday and Saturday, March 14-15, 2008. Two full days of testing, fixes, documentation, and general getting-stuff-done. Our goal is to get the jQuery UI 1.5 release (alpha, beta) ready for final, and we invite any and all to help. Whether you …
JavaScript Sprite Animation Using jQuery
March 5, 2008 | Filed under: jQuery
JavaScript Sprite Animation Using jQuery
Creating a flash like header effect with javascript and CSS
March 4, 2008 | Filed under: jQuery
The fine folks over at Swedish Fika shows us how to create a flash like hover effect for headers and other image elements on your site using CSS and jQuery.
Introduzione a jQuery, cos’è e a cosa serve
March 3, 2008 | Filed under: jQuery
Una breve introduzione a jQuery, una delle librerie javascript più diffuse per la manipolazione di oggetti DOM e per funzioni ajax.
Learning jQuery for Designers - Part 1
February 29, 2008 | Filed under: jQuery
This short series of tutorials will focus on learning jQuery - a lightweight but powerful JavaScript framework. This series jQuery for Designers mainly targeted for graphic designers, web designers, interface/GUI designers and front-end developers.
Drupal Podcast No. 53: Javascript/JQuery in Drupal
February 27, 2008 | Filed under: jQuery
Great intro to JQuery, even if you are not Drupal-minded
jQuery Reference Guide
February 23, 2008 | Filed under: jQuery
This detailed reference guide to jQuery, an open-source JavaScript library that shields web developers from browser inconsistencies, simplifies adding dynamic, interactive elements, and reduces development time, covers the syntax of every jQuery method, function, and selector with detailed discussions to help readers get the most from jQuery.
How to create Ctrl Key shortcuts in Javascript
February 22, 2008 | Filed under: jQuery
learn how to use javascript or jquery to capture key shortcuts
Galleria - a Javascript Image Gallery (jQuery)
February 13, 2008 | Filed under: jQuery
Possibly the snappiest image gallery around.
jQuery API Browser Update
February 13, 2008 | Filed under: jQuery
Remy Sharp has revived the jQuery API browser at a new location. The old API browser hadn’t
been updated since 1.1.3 and most other API browsers were running from the old doc structure (e.g. gotapi.com/jquery).
Remy added live searching and direct linking.
jQuery UI 1.5b: New API, more features, huge performance boost
February 12, 2008 | Filed under: jQuery
Hey everybody,
The jQuery team is proud to release the first beta release of the new upcoming version of UI, jQuery UI 1.5! It has been a long path to this release - originally intended to be a bugfix release, it was growing into something we just couldn’t call 1.0.1, not even 1.1, no, it’s so damn delicious we had …
Javascript: Mixing Exts Grid with JQuerys Flot
February 12, 2008 | Filed under: jQuery
Data visualization through charts and graphs is incredibly common and yet Ext doesn’t have a readily apparent charting library! JQuery has a great little charting library called Flot and getting it to work within an Ext application turned out to be pretty easy. I’ll show how I integrated the two and the problems I ran into.
Cross Window Messaging with HTML 5 postMessage
February 11, 2008 | Filed under: jQuery
John Resig has written a Cross-Window Messaging sample using Firefox 3, which implements the current postMessage API in HTML 5. Opera 9 implements a slightly older version, and a new release will fix that of course:
This particular API adds a new method to every window (including the current window, popups, iframes, and frames) that allows you to send …
jQuery: Easy JavaScript for Designers
February 8, 2008 | Filed under: jQuery
However for front-end guys like myself, much of the scripting fizz and bubble has been focussed around refitting your markup — that is, using JavaScript to make your markup work better after it gets to the browser. Today we’re going to look at an easy, all-purpose method that will allow us to do this anytime, anywhere: jQuery.
jQuery 1.2.3 is out! AIR, Namespacing, UI Alpha, and Effect
February 8, 2008 | Filed under: jQuery
jQuery hit version 1.2.3, supporting Adobe AIR, namespacing data storage, and squashing bugs. Also, jQuery UI hit 1.5a, and the new Enchant plugin offers easy JavaScript effects. Download it all now!
jQuery 1.2.3: Support for AIR, Namespacing
February 8, 2008 | Filed under: jQuery
The jQuery team announced today the release of jQuery v1.2.3. Primarily a bug fix for v1.2.2, this new release also includes new features to make it compatible with the Adobe AIR runtime and SDK:
The primary purpose of this release was to fix a couple outstanding bugs from the jQuery 1.2.2 release. Specifically, this release is now compatible with …
jQuery 1.2.3: AIR, Namespacing, and UI Alpha
February 8, 2008 | Filed under: jQuery
We’re happy to announce a brand new release of jQuery. This is primarily a bug fix release for jQuery 1.2. You can view the full list of what was fixed on the bug tracker.
Downloading
jQuery 1.2.3:
jQuery Minified (15kb with Gzipping)
jQuery Packed (29kb)
jQuery Regular (94kb)
If you wish to checkout the full release from …
jQuery UI and jQuery Enchant Alpha Versions Released Today
February 7, 2008 | Filed under: jQuery
The jQuery UI team announced today the release of alpha versions of jQuery UI 1.5a and jQuery Enchant 1.0a! The projects aim to address the need for a strong set of UI controls and effects to complement the jQuery JavaScript library.
I’m very happy to announce the first alpha release of both jQuery UI 1.5 and jQuery Enchant 1.0 …
Manuali e vademecum per Javascript, jQuery, Mootools, Protot
February 6, 2008 | Filed under: jQuery
Un ricco elenco di manuali e vademecum su Javascript, MooTools, jQuery, Prototype e YUI. Per chi vuole approfondire qualche framework javascript, questo è l’articolo per voi!
Low Pro for jQuery
February 4, 2008 | Filed under: jQuery
Dan Webb has ported Low Pro to jQuery and along the way discusses differences between Prototype and jQuery:
The one big reason was that, while jQuery was super simple and concise when working on smaller projects, it offered no help in structuring larger applications. All you get in jQuery, aside from Ajax methods and a handful of utilities, is the …
Workin’ Hard
February 3, 2008 | Filed under: jQuery
Paul Bakaus (jQuery UI Lead) and John Resig (jQuery Lead) working on the next release of jQuery UI (1.5) and jQuery Core (1.2.3).
It’s a rare treat, in distributed Open Source development, to be able to work face-to-face with a fellow developer. Paul is located in Germany, I in Boston - and much of the jQuery team …
jQuery UI Lead is hired by Liferay
February 1, 2008 | Filed under: jQuery
Liferay, authors of a popular open source Java portal, have hired Paul Bakaus lead on jQuery UI to work on it full time.
Liferay’s plans are to standardize all their products to use jQuery and its plugins for the future (you’ll still be able to use other libraries at the same time) - it’s therefore in their very interest …
jQuery Validation Plugin v1.2 Updated
January 30, 2008 | Filed under: jQuery
Jörn Zaefferer went absolutely feature crazy when he decided to update his jQuery Validation plugin. Update is putting it mildly with “overhaul” coming immediately to mind.
Here are some of the cool new features added in:
AJAX-captcha validation example (based on http://psyrens.com/captcha/)
Support for “remote” ajax-validation. In other words: Remote validation is now possible and very easy to use.
Added …
Manning JQuery in Action feb 2008
January 30, 2008 | Filed under: jQuery
A good web development framework anticipates what you need to do and makes those tasks easier and more efficient; jQuery practically reads your mind. Developers of every stripe—hobbyists and professionals alike—fall in love with jQuery the minute they’ve reduced 20 lines of clunky JavaScript into three lines of elegant, readable code.
jQuery: Interaction Design for PHP Developers
January 28, 2008 | Filed under: jQuery
It doesn’t advertise itself as such, but the jQuery JS framework is quite possibly one of the best JS frameworks for PHP developers. Most of the frameworks out there are designed for developers with JavaScript experience, and understandibly so.
jQuery UI and beyond: The jQuery-Liferay partnership
January 23, 2008 | Filed under: jQuery
jQuery UI is growing, and I’m already seeing quite a few sites using it exclusively to support their interface. As a matter of fact, it’s growing so well, that a LA-based open-source company decided to hire a person to exclusively work on jQuery UI full-time.
I’m very happy to announce that I, Paul Bakaus, lead of jQuery UI, was hired …
PopupWindow v2.0.0 now available
January 22, 2008 | Filed under: jQuery
One of the most popular jQuery plugins get an update with new features. PopupWindow lets you create javascript popup windows for static links on your web site.
jQuery ScrollTo Plugin
January 22, 2008 | Filed under: jQuery
Ariel Flesler has a nice little jQuery plugin, ScrollTo, that lets you scroll with many configuration options:
Axes to be scrolled, ‘x’, ‘y’, ‘xy’ or ‘yx’.
Animation length (or by default, no animation)
Easing method
Whether to take in account, the margin of the target element
If both axes are chosen, whether to animate together, or queue the animations.
The possibility to add/deduct from the …
Sub pixel fun with browsers
January 22, 2008 | Filed under: jQuery
John Resig has been tinkering with the sub pixel problems in CSS and how browsers deal with bit of pixels:
Something that jumped at me, recently, was a rendering dilemma that browsers have to encounter, and gracefully handle, on a day-by-day basis with little, to no, standardization.
Take the following page for example. You have 4 floated divs, each with …
as3Query: jQuery port to ActionScript
January 15, 2008 | Filed under: jQuery
First we see the new jQuery 1.2.2 release, and now “nitoyon” has ported jQuery to ActionScript 3.0 creating as3Query.
This port has everything bar the Ajax features, and it comes with a set of demos:
Creating instances and monitoring events
Tweening
CSS Selector
PLAIN TEXT
JAVASCRIPT:
function animate(f:Boolean):void {
// Select ‘RoundRect’ elements using CSS selector
…

