Uploadify is a wonderful plugin for jQuery that allows you to upload several files at once, it does the uploads transparently using flash (take a look at the demo on this link).
In fact, the great advantage I see is not to be able to upload several files at once, this can be done by javascript [...]
Tag Archive > jquery
[SOLVED] Uploadify and session problems
Click effect for jQuery
Today I’ve been playing for a while with javascript. The truth is that I haven’t found what I was looking for, but let’s assume that this is because I’m a programmer and not a designer.
Anyway, what I was trying to do is to create some kind of click effect. Ok, let me try again. What [...]
jQuery 1.4.1 is out
Some weeks after the release of jQuery 1.4, now the first bug fix release for this fantastic javascript framework is out.
The new version fixes several bugs, and includes some improvements.
Download jQuery 1.4.1 and have a look at the release notes.
jcontroller: A small and simple controller for javascript
It’s been a long time since the last post, so I’ve though Hey! I’m loosing users, I cannot let that happen, let’s get something from any project I’ve done recently, so I can do a post :p
The thing is that I recently noticed that the javascript I’ve been writing lately becomes messy after some time, [...]
jQuery 1.3.2 is out!
The version 1.3.2 of jQuery is finally out. It solves several bugs and improves the performance in some parts of the code.
The list of most important changes are:
Elements are now returned in document order.
.live() can now prevent bubbling.
:visible/:hidden are now significantly faster.
As are all the width/height methods.
Selectors are much faster [...]
jQuery 1.3 is here!
Yesterday the new jQuery 1.3, which is 3 years old, was released.
This new version seems to have great improvements over jQuery 1.2.6 which was the last release. Following there is a list with the most important features on this version, as you can see on the jQuery blog, son:
Sizzle: A sizzlin’ hot CSS selector engine. [...]
Rounding corners: the javascript way
After taking a look on how round corners on some browsers, I think it’s worth exploring other methods, like doing this with javascript.
Rounding corners is not difficult, in general, the problem is that you should use some “hacks”, it is not the same rounding corners using a style on a unique DIV, than using 3 [...]
How to reset a form in jQuery
Reseting the form to it’s initial values is one of those things you often do once and once again.
Doing this task with jQuery is really easy:
$(‘#FormID’).each (function(){
this.reset();
});
The thing is, that the code above iterates through each element of the form, and calls to the DOM “reset” javascript method. In fact, the “reset” function [...]
Español