Using mootools classes with jquery in dupal
I like the way you van organise your code with mootools and while working a lot with drupal recently i really liked the straight forward way of writing jquery code. What i dislike at jquery is the way to create plug-ins and at bigger projects the readability of jquery code gets worse. There is a [...]

Start to post interesting links on a weekly basis (I)
Often i miss the time to write a blog post that’s why i start to post a collection of interesting articles every week.
jQuery vs MooTools, MooTools vs jQuery
This is a must read if you doubt using jquery or mootools or just want a good introduction to javascript… http://jqueryvsmootools.com/
WordPress & mootools JSON requests
Short example doing a JSON request with mootools & wordpress for all categories & posts: The php part: require(‘wp-blog-header.php’); $categories = get_categories(); foreach ($categories as $category){ $posts = get_posts(“category=”.$category->cat_ID); if( $posts ){ foreach( $posts as $post ){ setup_postdata( $post ); $jsonData[$post->ID]['name'] =$post->post_title; $jsonData[$post->ID]['category'] =$category->name; $jsonData[$post->ID]['permalink'] =$post->guid; } } echo json_encode($jsonData); Mootools: var myRequest = new [...]

Reading XML via mootools
Mootools lead developer Valerio Proietti wrote a nice class to read XML into a hash. The class requires mootools 1.2 and will probably get into the next release of mootools. The methods provided: rootFromFile rootFromString rootToHashes nodeToHash hashesToTree hashToElement hashToHTML hashesToHTML transform
Mootools supersize background
The plug-in is not really finished but here a pre release of my first mootools plug-in. It’s based on the CSS of Stu Nicholls It was important that scrolling was still possible and periodical image switching with transitions / without fading to body background. If you not necessarily need scrolling you can also use these [...]
