Questions tagged [scriptaculous]

Script.aculo.us is a set of JavaScript libraries built on top of the Prototype framework

Script.aculo.us is a set of JavaScript libraries built on top of the Prototype framework.

Script.aculo.us offers an animation framework, drag & drop, Ajax control, DOM utilities and unit testing. It's being superseded by , which at the time of this writing is still in beta test.

Useful links

Related tags

368 questions
3
votes
3 answers

How to gatherElementById starting with a specific word?

Using Prototype and Script.aculo.us, I am trying to make all tags with an ID starting with "idea" Droppable but I can't remember how to get all tags starting with a specific string. Thank you in advance.
Todd Kendall
  • 63
  • 1
  • 4
3
votes
2 answers

Hoverable tooltips with AJAX-pulled content on Prototype/Scriptaculous (to act like Twitter's)`

Twitter recently added hoverable multi-media "tooltips" -- when you hover over a username or avatar on your feed, it pops up (in-place) more details on the user (tweets sent/received, location, last tweet). It also includes a "Follow" button.…
Arron
  • 31
  • 1
3
votes
3 answers

Using YUI and Prototype Together

I want to add a calendar control to a page that already includes Prototype and Scriptaculous. Not happy with any of the Prototype ones I could find, I'm considring using the YUI Calendar widget. I this likely to cause any problems?
Voidstate
  • 283
  • 1
  • 3
  • 8
3
votes
1 answer

Is there a jQuery version of Scriptaculous?

Scriptaculous is built on Prototype. Is there an effects library similar to Scriptaculous, but built on jQuery? There are many questions discussing jQuery and Scriptaculous, but none that directly address this question.
Crashalot
  • 33,605
  • 61
  • 269
  • 439
3
votes
2 answers

Style / Replace a select box using prototype / scriptactulous

I'm trying to style my select box, I assume I need some type of javascript method. I'm using rails - and sticking with prototype/scriptactulous. Does anyone know of any solutions? EDIT: CSS doesn't do nearly what I'm trying to accomplish: alt text…
Elliot
  • 13,580
  • 29
  • 82
  • 118
3
votes
3 answers

How to scroll whole visible page down to an anchor with a smooth effect (Scriptaculous or jQuery)?

I want to create an navigation with anchors. By clicking on a navigation link, the whole visible page should scroll down to the clicked anchor. The most important is the following structure of the page. --------------- (Begin visible browser…
ChrisBenyamin
  • 1,718
  • 4
  • 22
  • 39
3
votes
1 answer

Rails - dynamically adding to sortable_element

Am adding to a sortable list using Ajax, and to get the Scriptaculous effects to kick in after the add, the only way I have found is by re-executing sortable_element. Can anyone suggest a better way of doing this, at the complete code is a…
3
votes
1 answer

Conflict Bootstrap, Prototype Js and Jquery

After 7 days of search and after i have tried different solutions and it did not work i would like to ask: I have a page with prototype js, protaplasm, and scriptaculous and jquery and Jquery-ui and it was working perfectly with the jquery no…
John Max
  • 432
  • 8
  • 23
3
votes
1 answer

Prototype/Scriptaculous Cycle (Slideshow) Plugin

I've got a bunch of websites that use a few Prototype/Scriptaculous plugins such as lightbox and modalbox, hence include references to these two libraries on various pages. I now need to implement a slideshow on every page, and to follow suit, I…
Salman A
  • 262,204
  • 82
  • 430
  • 521
3
votes
2 answers

making a link toggle between SlideDown and SlideUp (scriptaculous)

The scriptaculous wiki has a demo (http://github.com/madrobby/scriptaculous/wikis/effect-slidedown) that shows the SlideDown effect in use. However I need to have the same link to slide down if a certain DIV is hidden and SlideUp if that DIV is…
Gezim
  • 7,112
  • 10
  • 62
  • 98
3
votes
1 answer

Javascript - Scriptaculous - Effect Callback function

I am using scriptaculous to perform a slidedown effect using the following code: Effect.SlideDown('dom_element_id'); I then hide the button which initiates this effect using: $('button_id').hide(); The issue is that the button is hidden before the…
Hamish
  • 796
  • 2
  • 14
  • 25
3
votes
2 answers

How to create nestable draggables in Scriptaculous?

I'm using the Scriptaculous library to slap an appealing UI on an application which helps an enduser build lists. Let's say its for pizza creation. To fill out an order, you drag a size of pizza from the pizza palette into the orders droppable. …
Patrick McKenzie
  • 4,066
  • 24
  • 23
3
votes
1 answer

Not all items sortable with Scriptaculous, Sortables, scroll and overflow

I'd like to have a scrollable container with overflow:scroll in which a sortable list is contained, like so:
  • Apple
  • Banana
3
votes
4 answers

How do I make an Ajax.Autocompleter perform a request without typing?

I'm using scriptaculous's Ajax.Autocompleter for a search with different filters. http://github.com/madrobby/scriptaculous/wikis/ajax-autocompleter The filters are requiring me to pass data into the autocompleter dynamically, which I've…
Steve
  • 4,033
  • 5
  • 32
  • 29
3
votes
2 answers

Scriptaculous Droppables onDrop callback, How to reference each element?

Documentation can be found here It says in the example: onDrop: Called whenever a Draggable is released over the Droppable and the Droppable is accepts it. The callback gets three parameters: the Draggable element, the Droppable element and the…
JRW
1 2
3
24 25