Skip to main content

Home/ javascript/ Group items tagged ##javascript

Rss Feed Group items tagged

Ivan Pavlov

yensdesign.com - 0 views

  •  
    Create an amazing music player using mouse gestures & hotkeys in jQuery
Ivan Pavlov

Monads on the Cheap I: The Maybe Monad at Oliver Steele - 0 views

  • What about the case where most products don’t have offerings, or the offerings don’t have merchants, vel cetera? If this were a frequent case, and this were inner-loop code, I might introduce a global empty object in order to reduce the object instantiation overhead (which happens right away) and the GC load (which shows up over time). E.g. define var $N={}, and use: var product = ..., merchantName = (((product||$N).offering||$N).merchant||$N).name; if (merchantName) displayMerchantName(merchantName);
Ivan Pavlov

Liquid JS - 0 views

  •  
    This is a complete port of Liquid from Ruby to JavaScript. Any template that Ruby Liquid can compile and render, Liquid JS should too.
Ivan Pavlov

New selector engine by John Resig - 0 views

  •  
    John Resig is working on a new selector engine called Sizzle. 4x faster in Firefox 3, 3x faster in Opera 9, 1.5x faster in Safari 3 than the other major JavaScript libraries.
Ivan Pavlov

Ajaxian » foreignObject: Hey, you've got HTML in my SVG! - 0 views

  •  
    The SVG foreignObject tag allows you to mix non-SVG content into your page. For example, you could drop some HTML in the middle of an SVG element.
Ivan Pavlov

Razor - Profile and Optimize Web 2.0 Ajax Performance - 0 views

  • Razor is a web delivered service for profiling and optimizing JavaScript-based Web 2.0 applications. It includes a profiler and an optimizer. Razor Profiler analyzes your JavaScript code and gives you insight into the runtime behavior of your application. Razor Optimizer optimizes your JavaScript code and trims overhead so that "What You Get Is What You Need"(WYGIWYN).
Julian Knight

Home - chain.js - GitHub - 0 views

  •  
    JQuery plugin that allows creation of html client-side using templates. Integration with jquery makes the process simple and compatible with events so that DOM manipulation stays consistent. See also interaction.js at http://github.com/raid-ox/interaction.js/wikis. This extends some easy interactions to chain such as drag and drop and sorting. Also usage tutorial at: http://zparse.net.tc/
Ivan Pavlov

http://www.cs.ucla.edu/~awarth/ometa - 0 views

  • OMeta is a new object-oriented language for pattern matching. It is based on a variant of Parsing Expression Grammars (PEGs) which we have extended to handle arbitrary data types. OMeta's general-purpose pattern matching facilities provide a natural and convenient way for programmers to implement tokenizers, parsers, visitors, and tree transformers, all of which can be extended in interesting ways using familiar object-oriented mechanisms.
Ivan Pavlov

onJSReady - 0 views

shared by Ivan Pavlov on 02 Aug 08 - Cached
  •  
    A modified version of Stefan Hayden's onJSReady Prototype plugin.
Ivan Pavlov

KevLinDev - Geometry - 0 views

  • SVG and JavaScript are used to find intersections and properties of a selected group of SVG elements. JavaScript objects used in this section are documented in the GUI section of this site.
Hussain M Elius

How to hide, show, or toggle your div - 0 views

  •  
    Are you trying to find a way to hide and show your content? The demo below shows a simple way of toggling your content via Javascript and styling.
Mike Chelen

Server-Side JavaScript Talk Slides & Source - 0 views

  •  
    It's well overdue, but I've finally managed to get this stuff up. Here are the slides from my presentation on Server-Side JavaScript, as well as the source code for the Jaxer REST API provider and consumers that I wrote.
Mike Chelen

Revision 79: /branches/1.0.2/protocols - 0 views

  •  
    # amqp/ # imap/ # irc/ # ldap/ # smtp/ # ssh/ # stomp/ # telnet/ # xmpp/
Mike Chelen

JavaScript & MySQL With Jaxer - 0 views

  •  
    Wouldn't it be cool if you could work with MySQL within your JavaScript code? Think about it, you wouldn't have to spend extra time writing extra server-side code for connecting to, querying, and parsing results, you could just write a little bit more code in your JavaScript and be done with it. Of course, we wouldn't want any of this SQL exposed to the end-user, as that would be a major security issue, but what if that problem was solved as well? You might also raise the point that you'd still need the ability to prepare your SQL statements that take dynamic input to prevent SQL injection attacks, but if that weren't an issue, wouldn't that be awesome as well?
Ivan Pavlov

Jx Library - 0 views

shared by Ivan Pavlov on 13 Nov 08 - Cached
  • Welcome to the home of Jx, a javascript library for creating graphical user interaces based on the fabulous MooTools library.
Ivan Pavlov

John Resig - DOM DocumentFragments - 0 views

  • var div = document.getElementsByTagName("div"); var fragment = document.createDocumentFragment(); for ( var e = 0; e < elems.length; e++ ) {         fragment.appendChild( elems[e] ); } for ( var i = 0; i < div.length; i++ ) {         div[i].appendChild( fragment.cloneNode(true) ); }
  • Setting some time stamps we can see our results pay off in spades: Browser Normal (ms) Fragment (ms) Firefox 3.0.1 90 47 Safari 3.1.2 156 44 Opera 9.51 208 95 IE 6 401 140 IE 7 230 61 IE 8b1 120 40
« First ‹ Previous 101 - 120 of 429 Next › Last »
Showing 20 items per page