Frederik Van Zande's Bookmarks tagged → View Popular
You are here: Diigo Home > Frederik Van Zande's Bookmarks
Non-blocking JavaScript Downloads » Yahoo! User Interface Blog
External JavaScript files block downloads and hurt your page performance, but there is an easy way to work around this problem: use dynamic scripts tags and load scripts in parallel, improving the page loading speed and the user experience.
more fromyuiblog.com
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
A List Apart: Articles: Getting Out of Binding Situations in JavaScript
Most developers don’t know about—or don’t care enough about—binding in JavaScript. Yet this single issue is responsible for a sizeable portion of the questions on most JavaScript-related support channels, and thousands—if not millions—of hairs being tortured away from developer heads every single day. Yet with a little attention to this oft-overlooked subject, you can avoid wasting your time, energy, and patience and move on to more powerful, efficient scripting.
more fromwww.alistapart.com
Exact Keyword Tracking with ga.js: Unofficial Google Analytics Blog
Last April, I posted a script that allowed paid search advertisers to view the exact search queries of their visitors. This was essentially a free tool that gave website owners the ability to weed out ineffective keywords and put more money toward the precise phrases that were really driving their business. Google Analytics doesn't do this out of the box. It will tell you exact search queries for visits from organic listings, but for paid search, you're stuck with the keywords that you're bidding on. With broad and phrase matching, these could vary pretty drastically from what the visitors typed into the search engine.
more fromwww.roirevolution.com
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
MooTools 1.2 Tooltips: Customize Your Tips
I’ve never met a person that is “ehhhh” about XHTML/javascript tooltips; people seem to love them or hate them. I’m on the love side of things. Tooltips give you a bit more information about something than just the element itself (usually an image or link). Netflix is a perfect example of useful tooltips. When you hover over a movie title, a tooltip displays with a quick summary, cast list, and movie rating. Thanks Netflix — you’ve saved me yet another page load! Tooltips can also provide another method of website branding. Why throw a vanilla tooltip to the user when you can brand your website? MooTools 1.2 provides a Tips plugin that allows for easy-to-customize tooltips. Let me show you how to create a
more fromdavidwalsh.name
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
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
SitePoint Blogs » In-browser Development Tools: Firebug Still King
At the start of this year, I sat down to write the “Errors and Debugging” chapter of Simply JavaScript. I cracked my fingers, dove into the landscape of JavaScript debugging tools, and emerged very disappointed several hours later. At the time, Firefox was the only browser with a JavaScript debugging tool worth writing about: Firebug. Less than a year later, the landscape has changed dramatically. Every major browser has introduced new development tools that make it easier to diagnose problems with your HTML, CSS, and JavaScript code right inside the browser in question. But can any of these tools stack up against the slick and effortlessly powerful tools provided by Firebug? Let’s take a look.
more fromwww.sitepoint.com
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 » modules.js: A New Stand-alone JavaScript Module Loader
Kris Kowal dropped us a line pointing us towards his year-long labor of love: modules.js, a stand-alone dynamic JavaScript module loader. As the module-loading space is quite crowded at the moment (e.g., Google, Dojo, Yahoo, JSModule, etc.), we asked Kris to explain what makes modules.js different. He had some interesting things to say. Existing Module Loaders Fall Short of Traditional Language Import Semantics
more fromajaxian.com
Minify CSS/JS ant revisited using YUI compressor | Henke.ws - Failure is not an option (it comes bundled with Windows)
I have revisited adding Yui compressor into my work's ant build script to minify JS and CSS scripts. The current jar was yuicompressor-2.3.5.jar . It took a lot of playing around but I finally stumbled on how to get it to work. Here is the snippet for the yuicompressor. I had to jump through a couple hoops like overriding the current js/css scripts with the optimized js/css scripts. I'll release a full working copy in a zip, you can run against your webroot. We achieved an average 18% compression rate for all our js/css files.
more fromwww.henke.ws
Ajaxian » Is “finally” the answer to all IE6 memory leak issues?
Hedger Wang has been scanning a lot of Chinese blogs lately for solutions to IE6 and memory leak issues. One of the things he stumbled upon is a pretty nifty way of nulling the objects to stop memory leaks by using the try ... finally construct. So instead of this solution which leaks memory:
more fromajaxian.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
Five Things We Learned Building our iPhone Site | MindBites the Blog
With our shiny new iPhone site ready for public consumption, we thought we’d share some things we learned while building it.
more fromblog.mindbites.com
Style Switchers Are Back: Ideas, Examples and a Contest | Design Showcase, Events | Smashing Magazine
examples of css styleswitchers
more fromwww.smashingmagazine.com
Notation: * = Private bookmark and comment|… = Clipping [?] | … = Public highlight [?]
Frederik Van Zande's Related Tags
See More Top Contributors
Related Groups on Diigo
-
Javascript
Items: 28 | Visits: 89
Created by: Vincent Tsao
-
Programming jQquery
Items: 36 | Visits: 72
Created by: Vincent Tsao
-
Javascript
Items: 4 | Visits: 58
Created by: lei zhou


