View RSS Feed

All Blog Entries

  1. Using Google to host your jQuery (or other) JavaScript libraries

    A growing number of scripts here on DD utilize the popular jQuery JavaScript library as its backbone, which means at the top of these scripts you'll see a reference such as:

    Code:
    <script type="text/javascript" src="jquery-1.2.6.pack.js"></script>
    which obviously requires you to download and host "jquery-1.2.6.pack.js" locally on your server. For those of you who likes to minimize hosting your own files for whatever reason, Google ...
    Categories
    JavaScript & Ajax
  2. Javascript Motion Effects Library

    I have created a motion effects library and aptly named it Javascript Motion Effects Library or the Jasme Library. I created it mainly to allow people to do complex effects with little code. Jasme works in firefox 3, safari, IE 7, and all other modern browsers. Jasme can move almost all variables of an object* and is very easy to use. When multiple actions are placed on the object, Jasme goes through a queue. You may use the library as long as you keep the label intact.Example1 Example2 Example3 ...
  3. [deleted]

    deleted

    Updated 04-12-2014 at 09:46 PM by magicyte ([deleted])

    Categories
    Uncategorized
  4. DOM manipulation code

    Here's some of my personal DOM manipulation code:

    Code:
    Object.extend = function(o1, o2) {
      for (var x in o2)
        if (o2.hasOwnProperty(x))
          o1[x] = o2[x];
    
      return o1;
    };
    
    Object.extend(Object, {
      copy: function(o) {
        return Object.extend({}, o);
      },
    
      fromArray: function(o) {
        var r = {};
    
        Array.map(function(pair) { r[pair[0]] = pair[1]; }, a);
    ...

    Updated 04-06-2009 at 12:47 AM by Twey

    Tags: 1'", zvwqendc Add / Edit Tags
    Categories
    Post a JavaScript , JavaScript & Ajax
  5. Featured Content Glider- Fade instead of Glide

    Original Script: Featured Content Glider

    Changes: By default this script glides the contents into view. With this mod, it fades them into view instead.

    Usage: Just replace the original .js file with the modified one.
    Categories
    DD Scripts Mods
    Attached Thumbnails Attached Files
Page 28 of 29 FirstFirst ... 1826272829 LastLast