December 27, 2009
Tags: Reviews, Snippets, Tutorials
WTFramework Summary
WTFramework is a dead simple, and well designed way to detect which framework a site is using as well as version. Being primarily a JavaScript developer I was always looking through the source to find which framework a certain site was using. Or to see if the developer had done something particularly cool with my favorite framework
MooTools.
It was developed by
Oskar Krawczyk and is implemented as a bookmark for any A grade browser. You simply drag it into your bookmarks bar and its installed. You can now use it on any site you visit. The notifications are “Growl” like and are very well designed.
Kudos to Oskar on this one, a dead simple, but time saving tool.
Installation
- Visit The Site
- Drag the big red icon into your bookmarks.
- It is now installed.
Fortunately For Us
Oskar has a public Git Hub repository for this. So if needs be you can change it to suit your needs.
Gallery

London based Website Design Company is providing professional website design and
website development services. They create a range of website applications and solutions - from secure ecommerce platforms to tailored content management system. Hampshire based Web design agency is specializing in
ecommerce website development. Browse through our work portfolio on website designing. Our programming team focuses to deliver an ecommerce web design that produces great ROI.
December 17, 2009
Tags: MooTools, Snippets, Tutorials
This is a relatively simple concept and is nothing to elaborate but I wanted to share a small piece of code that will take every link with the class of “ajax” and access it using AJAX instead of actually going to that page. This using the same Request instance which will keep it optimized and manageable. MooTools is going to make this nice and easy on us…
Usage
JavaScript
var ajax_request = new Request(
{
onSuccess: function(responseText, responseXML)
{
$('message').set('html', responseText);
}
});
$$('.ajax').each(function(item){
var url = item.get('href');
item.addEvent('click', function(event){
ajax_request.options.url = url;
ajax_request.send();
return false;
});
});
HTML
Sent Via AJAX
Also Sent Via AJAX
I am filled with the results of our AJAX requests.
Its incredibly simple so no demo for this. The important concept here is that we are using the same request and pulling the href attribute base on a class selection. So changing something from AJAX to regular is as easy as adding or removing the class “ajax”. Pretty cool eh?