Posts Tagged as ‘Javascript’

June 20, 2007

Selenium Testing with Prototype AJAX

If you are using Selenium to test your web application and you are having some AJAX in it, you may know that the waitForCondition assertion is your friend.
According to the Selenium documentation it:
Runs the specified JavaScript snippet repeatedly until it evaluates to “true”.
With this you can define your own condition which defines the end of [...]

March 13, 2007

IE Javascript event nightmare

I thought it would be nice to disable a forms submit button once it was pressed once to prevent impatient users from clicking again and again if the post might take longer as expected.
<input type=”submit” value=”Send” onclick=”this.disabled=true”/>
But as I noticed IE6 doesn’t like that. After disabling the submit it cancels the submit of the page [...]

March 1, 2007

Ajax & DHTML showroom

MinAjax is a great showroom for all the nice things you can add to a website.
My personal favorites are:

Prototype window
Bubble tooltips
Really Easy Field validation with Prototype
HighSlide JS

November 22, 2006

The “other” side of Scriptaculous

The JS library Scriptaculous is mainly know for its amazing effects and controls (e.g. AutoComplete, Drag&Drop, Sliders). However there is another side of it which is not as obvious. It contains a complete JS UnitTest framework which makes testing Javascript extremely easy and convenient.
Thomas Fuchs (creator of Scriptaculous) posted a presentation he gave about [...]

September 6, 2006

Prototype Carousel Class

If you liked the post about YUI Carousel Component but prefer Prototype / Scriptaculous as your favourite javascript libraries then this is for you: Prototype Carousel Class.

August 30, 2006

JavaScript Image Cropper

I wish I had found this JavaScript Image Cropper UI (using Prototype and Scriptaculous) before we added another one to a project.

March 28, 2006

Prototype JavaScript Windows

Another great extension built on top of Prototype and Scriptaculous: Javascript Popup Windows

February 21, 2006

Prototype overview

Jonathan Snook has some great cheat sheets of the Prototype library.
I would love to see the same for script.aculo.us. *hint*