Frederik Van Zande's Bookmarks tagged → View Popular
You are here: Diigo Home > Frederik Van Zande's Bookmarks
MooTools Image Preloading with Progress Bar
The idea of image preloading has been around since the dawn of the internet. When we didn't have all the fancy stuff we use now, we were forced to use ugly mouseover images to show dynamism. I don't think you were declared an official programmer until you had seen Macromedia Dreamweaver's mouseover function. MooTools image preloading requires very little code — let me show you how it's done.
more fromdavidwalsh.name
Ajaxian » Reverse Autocomplete; The details matter
Autocomplete was one of the first Ajax patterns to come about. We often talk about how it looks, but the how it works part is what really matters. How smart is the algorithm to work out what you are completing against? How long do you go before you kick in to see a result? Does it narrow enough?
more fromajaxian.com
Animated Progress Bars Using MooTools: dwProgressBar
I love progress bars. It's important that I know roughly what percentage of a task is complete. I've created a highly customizable MooTools progress bar class that animates to the desired percentage.
more fromdavidwalsh.name
DamnIT - JavaScript Error Handling
Getting JavaScript to work perfectly across all browsers is extremely challenging. You'll fix the bugs that leaked through testing faster with DamnIT's detailed error reports.
more fromdamnit.jupiterit.com
Jiffy Firefox Extension - Documentation
The Jiffy Firefox Extension is written Bill Scott of Netflix. It adds an additional panel to Firebug that provides a visual view of the Javascript time measurements captured by Jiffy-Web. The extension is available under Creative Commons license. Jiffy-Web is a fine-grained and flexible website performance tracking and analysis suite written by Scott Ruthfield and the team at Whitepages.com. The library provides a simple way to insert and capture time measurements in your Javascript code and save them to a backend service for later analysis.
more frombillwscott.com
CNET Common Libraries (Revision 442) » mootools
Plugins built for Mootools 1.2
more fromclientside.cnet.com
Example of ajax driven shop - Edenstore
very nice example of a very fast ajax driven e-shop don't mind the content
more fromwww.edenfantasys.com
Learning MooTools: MooTools Tutorials and Examples - Six Revisions
There are literally over a hundred of JavaScript frameworks out there that make writing complex client-side code significantly easier. If you’re in the market for a powerful, relatively lightweight, and customizable JavaScript framework, MooTools is worth checking out. To help you get on your way to developing highly-interactive web applications using MooTools, here’s 20 tutorials and working examples that’s worth a read.
more fromsixrevisions.com
Cheap Flights, Airline Tickets, Cheap Airfare & Discount Travel Deals - Kayak.com
nice example of ajax layered navigation
more fromwww.kayak.com
Free Websites Performance, Availability, Traffic Monitoring
Mon.itor.us provides a fresh, novel approach to IT and Website monitoring. Need to reduce site downtime? Provide superior user experience? Measure the traffic? Find reliable hosting? Compare your site performance with competitors? Understand who are your visitors? Achieve continuous business operations? Quickly diagnose and prevent issues? Promote your website? Mon.itor.us addresses these needs for individuals and organizations of all sizes. And it is easy and free anyone can use it in 5 minutes .
more frommon.itor.us
A List Apart: Articles: Sketching in Code: the Magic of Prototyping
Over the last year, I’ve noticed more and more conversations about prototyping as a method of approaching web application development. Beyond casual conversations, prototyping has also increasingly been the topic of blog posts or subject matter for conference presentations. The reasons for this increased interest include a laundry list of benefits that prototyping can bring to the process of developing compelling web applications. Ranging from increased collaboration to more effective solutions, these benefits have made prototyping a valuable new approach to consider for your next project.
more fromwww.alistapart.com
Ajaxian » Google Analytics after onLoad and document.write for XHTML
I saw two articles that were both looking at similar issues. Firstly, Pete Higgins has looked at the fact that Google Analytics is normally loaded via serial script tags which cause the rest of the application to wait and created a simple wrapper that changes things. We have all seen the tell tale: "waiting for google-analytics.com ... ".
more fromajaxian.com
Ajax security tools
Certain vulnerabilities within Ajax applications can allow malicious hackers to reek havoc with your applications. Identity theft, unprotected access to sensitive information, browser crashes, defacement of Web applications, and Denial of Service attacks are just a few of the potential disasters Ajax applications can be prone to and which developers need to guard against when building Ajax capabilities into their applications. Regular developerWorks author Judith Myerson suggests some application-strengthening tools, including Firefox tools and add-ons, which you can use to improve or solve security problems within your Ajax applications.
more fromwww.ibm.com
Performance Ajax tools
Wasting server resources can impact the performance of Ajax applications, resulting in excessive HTTP requests, high memory consumption, and the need for an unusual amount of polling to make applications work. Regular developerWorks author Judith Myerson suggests some open source tools and Firefox add-ons you can use to improve or solve problems with your Ajax applications.
more fromwww.ibm.com
Prototip 2 - Create beautiful tooltips with ease
example of different tooltips
more fromwww.nickstakenburg.com
Calendar: a Javascript class for Mootools that adds accessible and unobtrusive date pickers to your form elements
Calendar is a Javascript class that adds accessible and unobtrusive date-pickers to your form elements. This class is a compilation of many date-pickers I have implemented over the years and has been completely re-written for Mootools. I have tried to include all the features that have been most useful while streamlining the class itself to keep it as small as possible. Use the links below to see what features are available in Calendar and how it might enhance the accessibility, usability and validation of form elements on your website.
more fromwww.electricprism.com
Ajaxian » Announcing AJAX Libraries API: Speed up your Ajax apps with Google’s infrastructure
I just got to announce the Google AJAX Libraries API which exists to make Ajax applications that use popular frameworks such as Prototype, Script.aculo.us, jQuery, Dojo, and MooTools faster and easier for developers.
more fromajaxian.com
moo.rd - A lightweight Mootools extension
moo.rd is a super lightweight javascript (object oriented) library based on the MooTools framework. It is designed to give many useful and powerful functionalities to the developers, like a lot of effects, customizable standards, utility native functions, table management, virtual boxes and many more. In addiction moo.rd is modular, flexible, and completely compatible with all MooTools plug-in.
more fromwww.moord.it
Delivering the right experience to the right device | Filament Group, Inc.
Inspired by Jeremy Keith's concept of Hijax, we've adopted the practice of coding with progressive enhancement in mind to ensure optimal accessibility, compatibility with multiple browsers and platforms, and ease of maintenance for each site or web application. But how do you do that when so many browsers only partially support javascript and CSS techniques? We met the challenge by developing a script to test the browser's ability to handle modern coding techniques, and ensure a usable experience for all.
more fromwww.filamentgroup.com
CodeProject: Fast, Scalable, Streaming AJAX Proxy - continuously deliver data from across domains. Free source code and programming help
Due to browsers' prohibition on cross domain XMLHTTP calls, all AJAX websites must have a server side proxy to fetch content from external domains like Flickr or Digg. From the client-side JavaScript code, an XMLHTTP call goes to the server-side proxy hosted on the same domain, and then the proxy downloads the content from the external server and sends back to the browser. In general, all AJAX websites on the Internet that are showing content from external domains are following this proxy approach, except for some rare ones who are using JSONP. Such a proxy gets a very large number of hits when a lot of components on the website are downloading content from external domains. So, it becomes a scalability issue when the proxy starts getting millions of hits. Moreover, a web page's overall load performance largely depends on the performance of the proxy as it delivers content to the page. In this article, we will take a look at how we can take a conventional AJAX Proxy and make it faster, asynchronous, continuously stream content, and thus make it more scalable.
more fromwww.codeproject.com
Notation: * = Private bookmark and comment|… = Clipping [?] | … = Public highlight [?]
Frederik Van Zande's Related Tags
See More Top Contributors
Related Groups on Diigo
-
Web 2.0
Listing of cool Web 2.0-bas...
Items: 86 | Visits: 86
Created by: Shaunna Blount
-
webdevelopment
Links to webdevelopment
Items: 160 | Visits: 84
Created by: alfred westerveld
-
ajax framework
Items: 17 | Visits: 72
Created by: A. D.


