Reputation: 34197
Click "Reply by Email" of that page,
Upvotes: 0
Views: 237
Reputation: 218722
Simply jQuery
With one line of code you can do this.
www.jquery.com
Upvotes: 0
Reputation: 7871
In jQuery the effect closer to that page is slideDown:
$("button").click(function () {
$("#mydiv").slideDown("slow");
});
Upvotes: 2
Reputation: 14593
I believe MooTools is capable of doing this task. If not its not that hard to create that effect. Use setInterval to create an interval that repeats itself and resizes the box.
Upvotes: 0
Reputation: 8980
By using jQuery you can simply use the show() method:
$("button").click(function () {
$("#mydiv").show("slow");
});
More info here: http://docs.jquery.com/Effects/show
Upvotes: 3