Archive for the ‘ Mootools ’ Category

Useful Plugins and Resources For MooTools

MooTools is a fantastic object oriented JavaScript framework; It allows you to write powerful, flexible, and cross-browser code with its elegant, well documented, and coherent API. Most of us who have ever used MooTools will testify that it is as good as jQuery if not better. But if you compare the popularity levels between the two frameworks, jQuery is far ahead of MooTools.

Read more

Alternative Rows Colors With CSS and Mootools


/* load alternate row colors in a table */
function loadAltRowColors() {
if($$('table.myStyle')) {
var count = 0;
$$('tr.dynRow').each(function(elm) {
(elm.hasClass('odd') ? elm.removeClass('odd') : elm.removeClass('even'));
});
$$('tr.dynRow').each(function(elm) {
elm.addClass(count++ % 2 == 0 ? 'odd' : 'even');
});
};
};

Mootools, Ajax forms and tinyMCE

Submitting a form via ajax but using tinyMCE at the same time? Run into the problem where tinyMCE content won’t post via ajax? I may have the solution for you! ;)

Read more

5 Great MooTools Plugin Resources

One of the strengths of the MooTools javascript library is that the code is so flexible. This flexibility allows almost anyone to download the core and create plugins to their heart’s content. Why reinvent the wheel if you don’t have to though? Check out these fine websites which are loaded with easy to implement plugins.
Read more

MooTools TwitterGitter Plugin

Everyone loves Twitter. Everyone loves MooTools. That’s why everyone should love TwitterGitter, a MooTools plugin that retrieves a user’s recent tweets and allows the user to format them however the user would like. TwitterGitter allows the user to choose the number of tweets to retrieve and returns an object containing the data provided by Twitter.

http://davidwalsh.name/mootools-twitter-plugin

mooplugins.com goes beta!

The mooplugins.com website is now live for mootools developers t signup and for members to get their accounts registered. The site is still in beta but once we get a few registrations on board and test the site out and add more features along the way it will go live.

Check it out: mooplugins.com

mootools vs jquery

So, why mootools?

  1. Class support.
    JQuery’s SQL-like syntax is fine for quick and dirty javascripting, but eventually you’ll want real classes to structure your UI logic.
  2. It smells, feels and tastes like regular javascript.
    JQuery doesn’t even look like javascript, which isn’t necessarily a bad thing, since that’s kind of their goal. MooTools however, feels like just an extension of the language (more on this at point #9).
  3. Read more

MooTools Plugins Repository – Coming Soon

I am currently working on a project called: Mootools Plugin Repository. It’s the unofficial mootools plugin repository for all the mootoolers out there like me. I’ll give you a quick run-down on what we aim to achieve with the site:

  • Support for 3rd party plugins for v1.11 & v1.2
  • Project Profiles
    • Comments
    • Ratings
  • Search
    • Advanced Search
  • Member Accounts
  • Upload Previews and demos
  • Digg.com features
  • No Ads!
  • Run all by mootools <3 :)

We hope to have this up and running for you mootoolers soon.