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

learn more… | top users | synonyms

0
votes
3answers
39 views

Scriptaculous Autocompleter wont work in Firefox

I am working on a project which implements an autocomplete textfield with the Scriptaculous autocompleter. In versions of Internet Explorer less than 10, the system works fine, but since version 10 ...
1
vote
1answer
23 views

passing dynamic parameters in script.aculo.us

I want to pass dynamic values inside parameters of script.aculo.us for auto suggestion in my jsp page Below is my code where i want to get the value of checkbox and pass it to server. But in server ...
1
vote
1answer
46 views

Scriptaculous Effect.Appear glitch onmouseover

I've got a problem when using scriptaculous Effect.Appear() as a menu option, I wanted to create a flash-like menu but with pure css and scriptaculous. I've got my desired outcome which is when I ...
0
votes
1answer
198 views

why is effects.js from magento's installation of scriptaculous, conflicting with the lazy-load jquery plugin from Mike Tuupola

I have overridden the base default's page.xml, to include: the jquery lazy load plugin as the first jquery script in the head section. then immediately following that, i have a no_conflict.js that ...
0
votes
3answers
133 views

jQuery Autocomplete using URL

I've been working on a site that currently uses Prototype+Scriptaculous's Ajax.Autocomplete. It works great at the moment, but I need to convert it to jQuery. I know that jQueryUI has an ...
0
votes
1answer
42 views

scriptaculous effect.toggle to left and right instead

Can anyone tell me how to use Effect.toggle() to toggle to left and right instead of up and down? Or is there any other effect in Scriptaculous that does this ?
1
vote
1answer
74 views

how to get callback for scriptaculous autocomplete

In my jsp file i have a search text box and i'm trying to get the autosuggestion from my server jsp component into div using prototype and scriptaculous library. Below is the part in my jsp page ...
1
vote
1answer
93 views

Slideshow using Prototype and Scriptaculous

I wrote my first scriptaculous script to create a slideshow between some div element : var SlideShow = Class.create({ initialize:function(element, delayStart){ this.element = element; ...
0
votes
1answer
143 views

FancyZoom zooms only once

I found this code somewhere on the Web. It works fine, but only once. The other time I trigger an eventListener it doesn't zoom. Although the Zoombox appears, there is no swf there. Here is HTML ...
0
votes
4answers
46 views

Javascript caching tools and techniques

I have a requirement where in I want to loop through all the DropDown (select) controls on a page. I am picking all the DropDown controls using: var DropDowns = ...
-7
votes
2answers
71 views

What is used to code this site? [closed]

the website sym baloo .com has the ability to move icons about the screen. You can drag and drop the little tiles from one square to another. Also this must be able to update the database with the new ...
0
votes
0answers
118 views

Animate bootstrap fluid grid

I'm wondering if you could offer some advice here on how to write Javascript animation code for performing great animation on Bootstrap fluid grid system. My idea for is that I have a simple page ...
1
vote
1answer
97 views

script.aculo.us toggle appear on multiple div's

I got into a bit of a mess with my code and I hoped you guys could help me out with a clever idea. So, I am working an a html page and using scriptaculous to make some div's appear and fade using the ...
1
vote
1answer
61 views

CodeIgniter & script.aculo.us InPlaceEdit produces duplicates on update

I'm working on a CI project and implemented scriptaculous InPlaceEdit. It works, but behaves strangly when and after updating a value. 1) When I click to edit, even though the field is just one word ...
0
votes
1answer
106 views

Toggle all elements with a given css class

I'm trying to toggle multiple elements with a given css-class all at the same time with a single checkbox. This looks like this: HTML: <input type="checkbox" ...
1
vote
2answers
76 views

Is there a way to delete a scriptaculous autocomplete object?

I used the scriptaculous autocomplete to create a big page of editable fields, the amount of fields is dynamic, and therefore i create an array to hold all of the autocomplete objects. then, i need ...
0
votes
0answers
28 views

Sciptaculous Autocompleter - How to change position

When using scriptaculous autocompleter, I have a drop-down menu appearing under a text-box. Everything works fine in FF/Chrome but not in IE8/9. In IE the drop down appears way down the page. I ...
1
vote
2answers
83 views

Colspan for Scriptaculous/Prototype DOM elements

I utilized scriptaculose/prototype Builder to create TR and TD. The colspan doesn't work in IE, but it works in FF and Chrome. Do you have any experience on this issue? This doesn't work in IE, but ...
1
vote
1answer
71 views

Scriptaculous draggable on object not working in Firefox

We are using Scriptaculous' draggable feature to allow the dragging and dropping of elements. This all works fine except when dealing with flash movies. We are using Scriptaculous v1.9.0 and ...
0
votes
2answers
87 views

Scriptaculous dom:loaded working only “sometimes”?

So basically, I'm working on a Facebook login flow for my website. It's fairly basic, but giving me some problems. The issue appears that the click observer is only working some of the time. A hard ...
0
votes
0answers
84 views

script.aculo.us autocomplete doesnt work with IE 9

I'm using the scriptaculous autocomplete to load some of the details from the server end and its working fine for all the browsers except IE 9. I'm simply not getting any drop down box from the text ...
1
vote
2answers
89 views

changing track color between 2 Slider handels

I am using Script.aculo.us Slider.js to display dual sliders. It working perfactly. what I want to do is to change the color to track only in between these two slider. For example if 1st Slider is on ...
0
votes
1answer
101 views

Use scriptaculous effects in jQuery code

jQuery sliding animations are choppy unlike scriptaculous ones. So i want to replace my jQuery .slideUp/Down() with Scritaculous Basically, use scriptaculous slideup/down in this code -> ...
0
votes
1answer
116 views

Inserting a div before another div with javascript/prototype/script.acuo.us

I have a function that adds a product to the basket and then displays a success message at the top of the main content area of the page. I have got the ajax call on the onsuccess function working. I ...
1
vote
1answer
134 views

How to fire a prototype event after another one has finished?

For example, doing this: new Effect.Move('agrupador', { x: -100, y: 0, mode: 'relative' }); Element.setStyle('agrupador', {left: '0px' }); The left position is applied before the element moves ...
0
votes
0answers
58 views

scriptaculous not working in Richfaces 4

I am upgrading my application to JSF2 and Richfaces 4. I have been using scriptaculous in almost pages. But when integrating with Richfaces, it is showing script error and the scriptaculous ...
1
vote
1answer
204 views

How to manage Scriptaculous slider handle from input box value

I'm using Scriptaculous to create a price range slider with two handles. How can I manage slider handle from input box value. ie, slider handle moves according to input box values. Tried as follows ...
0
votes
1answer
402 views

Scriptaculous slider price range slider with two handle

I'm using Scriptaculous to create a price range slider with two handles says minimum and maximum values. How can I store minimum and maximum values in separate hidden field. Current script as ...
0
votes
1answer
455 views

Dragging table rows between tables with scriptaculous

I have several similar tables inside a page, and, using scriptaculous, I would like to drag and drop one row from one table to another. I can already do this with the code: new Draggable('some-id'). ...
2
votes
1answer
147 views

Scriptaculous Effect.SwitchOff — What is the jQuery equivalent?

I'm migrating the frontend of my web app from Prototype/Scriptaculous to jQuery. I've searched the jQuery UI for the equivalent of the Scriptaculous SwitchOff effect, with no results. You can see ...
0
votes
0answers
96 views

scriptaculous fade() adds style=“”

I'm using the following line of code to fade in the div content in the tab using prototype and scriptaculous: $('lesson-'+tab).fade({ from:0, to:1 }); This div when faded in has the style ...
0
votes
2answers
185 views

showing content of tab after giving fade effect

In my page there are a number of tabs and I want to show the content of tab by giving fade effect. In order to do this I need the tab divs which has a class name of sectionContent after fade ...
0
votes
1answer
181 views

fadein effect with scriptaculous

I want to fade effect of the div, the following script doesn't work. What can be the problem? Thanks a lot. function fadeIn(){ $('test').invoke("fade", { from: 0, to: 1, ...
0
votes
1answer
943 views

Javascript Prototype-Carousel

I found this code at ( http://code.google.com/p/prototype-carousel/ ) but somehow I can't manage him to work. Can someone help me please? The image load fine but the buttons simple does nothing. ...
0
votes
0answers
29 views

Is there a way to revert to the previous value if the new one is empty with InPlaceEditor?

I'm using the InPlaceEditor to edit some stuff in a form, however if the user accidentally submits an empty text the i'm using for the InPlaceEditor becomes unusable. Is there any way to revert to ...
0
votes
1answer
348 views

setting a div display property to block giving it fade effect

I need to set the display property of div to block giving a fade effect, fadein function does not change the display property of the div to block. So the div cant be seen. How can I do it? ...
0
votes
2answers
260 views

How to Animate a DIV From Display None to Block in prototypejs

I need to display a div from display:none to display:block giving it a fade effect. How can I do this in prototypejs? Thanks. <div id="fadeId" style="display:none"> </div>
1
vote
1answer
195 views

Scriptaculous slider price range handles

I'm using Scriptaculous to create a price range slider with two handles. Problem at the moment is the two handles can slide past each other. How can I make them stop if they reach the other handle ...
0
votes
1answer
225 views

Scriptaculous Effect.toggle not appearing when display none set externally

I have a problem getting an element to appear using scriptaculous Effect.toggle, I want the element to start hidden and appear onclick. If I set the element display to none inline the element will ...
0
votes
2answers
79 views

Creating buttons and identifying them in Prototype

This post is a kind of a multi-part question, but essentially i'm loading in an array of objects with my products. What I want to do is to create a list of buttons like this: <?php ...
0
votes
1answer
50 views

script.aculo.us Slider to get text from specified div

Friend of mine needs help with some JavaScript, and since I know a little bit (little), I decided to help him. I'm drawing a blank on this one, though. Using script.aculo.us to create a multi-slider. ...
1
vote
0answers
125 views

scriptaculous sortable tree - prevent nodes from entering child/parent lists

Working on an old project that is using scriptaculous and running into an issue. I currently have a tree structure like the following: Item 1 + Item 1a + Item 1aa + Item 1ab + Item 1b ...
0
votes
1answer
152 views

Scriptaculous: Multiple autocompleter fields

I need to find a way of adding five autocompleter HTML fields to a web form. I have one working perfectly, but when I repeat the code it doesn't work. I'm sure there's a very simply answer to this, ...
0
votes
1answer
222 views

How to make clone of JotForm?

I have recently looked at jotForm which ia very Interactive form Builder. They have used Prototype JS library. What can be a good base for making a similar form Builder. Jquery, Prototype , ...
0
votes
1answer
224 views

draggable elements with prototype

I am trying to make new draggable elements using prototype. The first element gets added and is draggable, but if I click to add another the second is not draggable. The following is what I have so ...
3
votes
2answers
602 views

Highcharts nodeName of undefined

When playing around with a chart generated by highcharts, and exporting it to SVG, I get a lot of errors, about 1000 (nodeName of undefined) per 6 seconds The code responsible is this: element = ...
3
votes
2answers
266 views

Javascript framework for GUI eye candy [closed]

Of the major Javascript frameworks (jQuery, MooTools, Dojo, Prototype etc), which would be most suitable for build a graphics-intensive online editor? That is, the application I have in mind would ...
0
votes
2answers
119 views

two javascript files that hate each other

I have recently been working on a site and have implemented both light window and easyslider. They both work fine on their own but if you combine the two of them then either easy slider works or light ...
0
votes
1answer
148 views

scriptaculous Builder equivalent in jQuery?

I like the scriptaculous Builder syntax to create DOM elements. Is there something similar in jQuery? I'd prefer not to use something like ...
0
votes
2answers
521 views

Javascript Slideshow with script.aculo.us

I am making a slideshow on my mvc php site using script.aculo.us to animate it. The model looks up the images from the database, fills it into the view and then the javascript uses script.aculo.us to ...

1 2 3 4 5 7