Script.aculo.us Is My New Best Friend

Ajax is great. DOM manipulation is sexy. I'm fairly new to the Ajax world having only developed with with it since July. MasterWish was my guinea pig and continues to be my playground for all things Web 2.0. Luckily, my manager Ken is pumped up about this whole Web 2.0/Ajax thing which has allowed me to experiment with my projects at work as well and PSU should expect to see some sweet apps roll out over the next year!

Since July, I've been developing my Ajax applications and examples using SAJAX (Simple Ajax), a PHP/Javascript framework for Ajax development. It was great at first glance...a lot easier than building Asynchronous Javascript transactions from scratch. But despite its ease, it was a bit clunky. Last week I was stumbling around the web looking for anything new to suck up and found a beauty of a tool. Script.aculo.us.

Script.aculo.us is a Javascript Effects and Control framework developed by Thomas Fuchs, a software architect living in Vienna, Austria who, like me, was disappointed by current web application frameworks that made no sense to him. His framework is 3 things: Easy to Use, Simple, and Easy to Use. His libraries - built off of the Ajax framework, Prototype - blow SAJAX out of the water! Let me give you an example to, say, update a news title on an article (I won't include the HTML markup as that is trivial):

Here's what needs to be done to build a SAJAX call:

Step 1: Create a SAJAX Call Function

JavaScript:
  1. function x_updateTitle()
  2. {
  3.     sajax_do_call('/process_ajax.php',"x_updateTitle", x_updateTitle.arguments);
  4. }

Step 2: Create a server side function to handle the update

PHP:
  1. <?php
  2. function x_updateTitle($news_id,$news_title)
  3. {
  4.     //do some database calls to update the title;
  5. }
  6. ?>

Step 3: Edit the server side SAJAX file (process_ajax.php) and add x_updateTitle to the list of valid call functions

PHP:
  1. <?php
  2. include('sajax.php');
  3. addFunctions('x_updateTitle');
  4. handleClientRequest();
  5. ?>

Step 4: Call the SAJAX Javascript function from somewhere (in an onClick, onSubmit or something)

HTML:
  1. <a onClick="x_updateTitle(1, document.getElementById('news_title').value, 'callbackFunction');">asdfdf</a>

Here's the equivalent in Script.aculo.us
Step 1: Create a server side function to handle the update

PHP:
  1. <?php
  2. function x_updateTitle($news_id,$news_title)
  3. {
  4.     //do some database calls to update the title;
  5. }
  6. ?>

Step 2: Call the Script.aculo.us Javascript function from somewhere (in an onClick, onSubmit or something)

HTML:
  1. <a onClick="new Ajax.Request('/process_ajax.php', { asynchronous:true, parameters:'news_id=1&news_title=$(\'news_title\')', onSuccess:callbackFunction });">asdf</a>

Thats it! Its a big difference. Thats just the tip of the iceberg. Script.aculo.us has many features for implementing Drag and Drop with one line of Javascript code; fancy display/hide functions; dynamic DOM Element creation/deletion; field autocompletion; and various other visual effects. It slick. And to top it off, the Script.aculo.us website is pretty sweet! Luckily the documentation is excellent and is in wiki format. As Plymouth State moves into the Web 2.0 world, I'll be pushing for Script.aculo.us/Prototype to be our Ajax standard. I have seen the light and it is good.

Discuss This Article


22 Responses to “Script.aculo.us Is My New Best Friend”

  1. AvatarWandering Pig Effer

    Kinda disappointing that this library is not designed with OO methodologies, taking full advantage of PHP5 and its new features…

    One should be able to this:

    include(’sajax.php’);

    $objSajax = new Sajax();
    $objSajax->addFunctions(’x_updateTitle’);
    $objSajax->handleClientRequest();

    Perhaps its just me, but I tend to shy away from libraries that aren’t written for the latest version of the language they are written in.

    Reply to this comment.
    1
  2. AvatarMatt
    Author Comment

    Which is why SAJAX sucks and Script.aculo.us is groovy. Script.aculo.us, built on Prototype, is Object Oriented (well, as OO as you can get with Javascript) and leaves the PHP up to the developers.

    Reply to this comment.
    2
  3. pingback pingback:
    NoSheep! » Scriptaculous

    [...] Matt recently came across and got very excited about Script.aculo.us for doing DHTML effects and AJAX. [...]

    Reply to this comment.
    3
  4. pingback pingback:
    BorkWeb » Blog Archive » Node Manipulation in the DOM

    [...] I’ve been screwing around with DOM Manipulation for a few years now, doing stuff sporadically here and there. With my development of MasterWish and my recent interest in Script.aculo.us, I often find myself forgetting the various objects, functions and attributes relating to nodes. Hence the reason for this post. I want a quick and easy way to find the information…So, here’s a quick run-down of node structure: [...]

    Reply to this comment.
    4
  5. pingback pingback:
    BorkWeb » Blog Archive » Thomas Fuchs of Script.aculo.us: Ajaxian Podcast

    [...] Ajaxian has posted a podcast of their interview with Thomas Fuchs, the creator of Script.aculo.us. Ajaxian summarizes the content that is discussed: [...]

    Reply to this comment.
    5
  6. pingback pingback:
    BorkWeb » Blog Archive » Ajax; Templating; and the Separation of Layout and Logic

    [...] I have often mentioned my process of expanding my proficiency of Ajax. Through my journey I have made a number of wrong turns and hit my share of stumbling blocks. All of that has been a learning experience and I’m learning still. I began fiddling with XMLHttpRequest as many do - blissfully ignorant of the many frameworks that exist to make Ajax super easy. My code was bloated with some neat…’features’ (pronounced: bugs). [...]

    Reply to this comment.
    6
  7. AvatarFanis

    I feel that a reference to XAJAX is necessary here. I started off by using SAJAX, but now I’m hooked on XAJAX because of how easy it is to place the resulting html back into the document. No need for a callback there.

    Example server-side function:

    function dostuff($a) {
    $obj = new xajaxResponse() ;
    //perform whatever operation here
    $result1 = $a . “bla” ;
    $result2 = $a . “bli” ;
    $obj->addAssign(”div1″, “innerHTML”, $result1) ;
    $obj->addAssign(”div2″, “innerHTML”, $result2) ;
    $obj->addScript(”Element.show(’div1′);”) ;
    return $obj->getXML() ;
    }

    That’s it. The rest (calling the php function via javascript, as well as the setup) is similar to SAJAX. http://www.xajaxproject.org

    Fanis

    Reply to this comment.
    7
  8. pingback pingback:
    BorkWeb » Practicing What I Preach

    [...] MasterWish was built using SAJAX as the tool of choice for Ajax communication but as I’ve mentioned in the past, I am a Prototype convert. My knowledge of Ajax, JSON, and general application structure has been morphing so much in recent weeks that I have held off in completely revamping the wish list site. [...]

    Reply to this comment.
    8
  9. pingback pingback:
    BorkWeb » Script.aculo.us v1.6 Soon

    [...] Great news over at Mir.aculo.us. It appears as if version 1.6 of my favorite DOM manipulation library, Script.aculo.us will be out soon. Thankfully the new version of Script.aculo.us will be using Prototype v1.5. [...]

    Reply to this comment.
    9
  10. pingback pingback:
    BorkWeb » The Case For JSON: What Is It and Why Use It?

    [...] As Ajax methodologies (and even Cross Domain Scripting) become more commonplace, data format becomes vital to the efficiency of our applications. The Zimbra folks seem to have realized this and subsequently re-architected their entire application. Oh, and Script.aculo.us creator Thomas Fuchs seems to agree and stats his opinion on XML in Ajax communication: Its dog slow…don’t do it. [...]

    Reply to this comment.
    10
  11. AvatarRudi

    Hi,

    Could you publish a couple of simple database example using both Sajax and Script.aculo
    to see the difference more clearly. Thanks.

    I’m having a hard time trying to get something to work against a database. I use Oracle.

    Have a nice day and thanks in advance for the reply.

    Regards,

    Rudi

    Reply to this comment.
    11
  12. pingback pingback:
    programania » Javascript, ajax, jSon, Prototype y scriptaculous 12
  13. AvatarRon

    Check out http://www.planjam.com/date.php

    The site urelies heavily on AJAX, uses Prototype, and does an excellent job with many aspects of the script.aculo.us library.

    Reply to this comment.
    13
  14. Avatartest

    this is to see how comments look

    Reply to this comment.
    14
  15. AvatarAlex

    I prefer Sajax, because I managed to learn it and fully understand it, and it’s actually easy to use.

    Sajax is way better :D… really
    Sajax rulez!

    Reply to this comment.
    15
  16. pingback pingback:
    BorkWeb » Learning What I Know

    [...] THEN tackle Prototype and Script.aculo.us [...]

    Reply to this comment.
    16
  17. Avatarkatalog

    The problem comes when the “pros” that develop such libraries widely demonstrate uses that are blatantly bad from a usability point of view. They should be encouraging good uses, not promoting bad ones.

    Reply to this comment.
    17
  18. pingback pingback:
    BorkWeb » The Ajax Experience: jQuery Toolkit

    [...] I went to The Ajax Experience with high expectations of catching some great tips regarding development in an Ajax environment. At the same time, I was sure of my previous decision with the use of Prototype and Script.aculo.us was as good as it gets (without diving into the widgetized world…e.g. Dojo). I attended John Resig’s presentation on jQuery and I became a convert. [...]

    Reply to this comment.
    18
  19. Avatarpogoń świerzawa

    Nice:)
    They should be encouraging good uses, not promoting bad ones.

    Reply to this comment.
    19
  20. Avatarjewellery

    Hmmm… I think this is the third time I’ve heard about scriptaculous this week. Must be a sign! I haven’t tried SAJAX out yet, but am glad to hear about both SAJAX and Scriptaculous, as I’m also just starting (and only just) at looking at AJAX. Haven’t used it yet, but the concept is great. This is fantastic, perhaps this will mean a lot less time wasted. Thanks for this!

    Reply to this comment.
    20
  21. Avatarportrait oil painting

    Are you sure you’re new to this? It looks like you’re already a pro. Thanks for a very detailed post. I’m trying to consolidate everything and trying them out myself so I can share them to my students.

    Reply to this comment.
    21
  22. Avatarqwieqowoeu

    very good site

    Reply to this comment.
    22

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Comment Preview:

 (8671) - scriptaculous drop down menu (200) - scriptaculous menu (157) - scriptaculous menus (130) - scriptaculous dropdown (108) - scriptaculous examples (103) - menu scriptaculous (102) - scriptaculous oncomplete (91) - script.aculo.us menu (89) - script.aculo.us (86) - scriptaculous drop down (74) - Drop down Menu scriptaculous (44) - scriptalicious menu (43) - scriptaculous effect oncomplete (41) - scriptaculous dropdown menu (38) - scriptaculous tab (32) - scriptaculous samples (30) - scriptaculous php (29) - script.aculo.us drop down menu (25) - scriptaculous horizontal menu (24) - scriptaculous droppable (24) - script.aculo.us examples (23) - scriptaculous vertical menu (21) - scriptaculous drop down menus (20) - scriptaculous hover (20) - scriptaculous drop (19) - scriptaculous tabs (19) - scriptaculous tab menu (18) - script.aculo.us tabs (18) - xajax scriptaculous (17) - sajax autocomplete (16) - Script.aculo.us tab (16) - scriptaculous php autocomplete (15) - dropdown menu scriptaculous (14) - scriptaculous autocomplete php (14) - vertical menu scriptaculous (14) - script.aculo.us dropdown menu (13) - scriptalicious tutorial (13) - scriptalicious examples (13) - javascript menu scriptaculous (12) - scriptaculous autocompleter php (12) - php scriptaculous (12) - dropdown scriptaculous (11) - xajax autocomplete (11) - script.aculo.us autocomplete php (11) - script (10) - script.aculo.us php (10) - facebook scriptaculous (10) - script.aculo.us dropdown (9) - scriptaculous xajax (9) - script aculo menu (9) - menu script.aculo.us (9) - prototype scriptaculous menu (9) - scriptaculous pulldown menu (9) - scriptaculous drop down list (9) - autocomplete scriptaculous (9) - javascript drop down menu scriptaculous (9) - scriptaculous pulldown (9) - scriptaculous menu example (9) - sajax examples (8) - scriptaculous facebook (8) - scriptaculous menu tutorial (8) - scriptaculous example (8) - examples scriptaculous (8) - scriptaculous dynamic menu (8) - scriptalicious tabs (8) - scriptaculous database (7) - javascript scriptaculous menu (7) - scriptaculous onclick (7) - drop down scriptaculous (7) - best scriptaculous (7) - Scriptalicious menus (7) - scriptaculous drop-down menu (7) - scriptaculous tab control (7) - scriptaculous expanding menu (7) - scriptaculous hover effects (7) - script.aculo.us drop down (6) - scriptaculous menu examples (6) - dynamic menu scriptaculous (6) - scriptaculous javascript menu (6) - scriptaculous dynamic drop down (6) - scriptalicious drop down menu (6) - autocomplete scriptaculous php (6) - scriptaculous horizontal (6) - prototype scriptaculous examples (6) - scriptaculous pull down menu (6) - scriptaculous drop down menu tutorial (6) - scriptaculous select menu (6) - drop down menu script.aculo.us (6) - menu déroulant scriptaculous (6) - scriptaculous dropdownlist (6) - scriptaculous hover menu (6) - scriptaculous menu vertical (6) - script.aculo.us php autocomplete (6) - horizontal menu scriptaculous (6) - scriptaculous menu horizontal (6) - oncomplete scriptaculous (6) - script.aculo.us example (5) - scriptaculous drop downs (5) - scriptaculous dropdowns (5) - script.aculo.us pronounce (5) - scriptaculous best (5) - script.aculo.us autocomplete (5) - scriptaculous select dropdown (5) - autocomplete xajax (5) - Effect oncomplete scriptaculous (5) - scriptaculous (5) - autocompleter scriptaculous php (5) - drop down menu with scriptaculous (5) - scriptaculous dhtml menu (5) - sajax drag drop (4) - php script.aculo.us (4) - scriptaculous drag and drop example (4) - scriptaculous dropdown menus (4) - prototype scriptaculous drop down menu (4) - scriptaculous drag example (4) - json scriptaculous (4) - menus scriptaculous (4) - aculo menu (4) - scriptaculous list (4) - drop down menus with scriptaculous (4) - menu drop down scriptaculous (4) - scriptaculous dynamic menus (4) - prototype scriptaculous php (4) - scriptaculous menu samples (4) - scriptaculous menu sample (4) - scriptaculous and php (4) - tab menu scriptaculous (4) - script.aculo.us menu dropdown (4) - scriptaculous autocomplete parameters (4) - scriptaculous menu effect (4) - scriptaculous pull down (4) - scriptaculous pronounce (4) - scriptaculous on complete (4) - best of scriptaculous (4) - scriptaculous draggable example (3) - script.aculo.us menus (3) - script.aculo.us sample (3) - Scriptaculous drop menu (3) - xajax and scriptaculous (3) - new best friend script (3) - drop down menus scriptaculous (3) - menu script aculo us (3) - scriptaculous select (3) - prototype scriptaculous dropdown (3) - script.aculo.us drag and drop tutorial (3) - php scriptaculous autocomplete (3) - pronounce script.aculo.us (3) - scriptaculos dropdown (3) - scriptalicious onComplete (3) -