PinoyTech.org

CodeIgniter, Kohana, Mootools, jQuery and CSS

A Simple Mootools Drop Down Menu

Posted by teejay on March 18, 2010

I'm really learning Javascript throught Mootools and as one of my efforts, I tried and succeeded in creating a Mootools Drop Down Menu. Like most Javascript dropdown scripts, it works by simply displaying and hiding unordered lists.

Continue reading A Simple Mootools Drop Down Menu

 

Creating A Mootools Plugin for Ajax Form Submissions

Posted by teejay on March 17, 2010

Ajax forms are in right now. I just decided to create a plugin, I've been using for a personal project I am on. It works by stopping the submission event and sending it via AJAX.

Continue reading Creating A Mootools Plugin for Ajax Form Submissions

 

Javascript double exclamation point !!

Posted by teejay on March 8, 2010

I spend my time developing applications and have geared most of my time to learn and hopefully 'master' javascript. One of the things I've noticed while reading the Mootools Core source code(Yeah, I'm hard core :p ) is the double exclamation points.

function $chk(obj){
 return !!(obj || obj === 0);
};

What does that mean?

Continue reading Javascript double exclamation point !!

 

Implementing jQuery Live in Mootools

Posted by teejay on March 8, 2010

If you're like me, I've been wanting to have a jquery live implementation in Mootools for the longest time. Luckily someone from Stackoverflow did it for us.

Continue reading Implementing jQuery Live in Mootools

 

Image Viewer with Thumbnails using Mootools

Posted by teejay on December 17, 2009

image_viewer_w_thumbnails_using_mootools.gif

This is a simple tutorial for creating an image viewer with thumbnails using Mootools.

Continue reading Image Viewer with Thumbnails using Mootools

 

Mootools Forge Launched

Posted by teejay on December 12, 2009

mootools forge

Mootools is a fantastic Javascript framework. One problem with using Mootools is that didn't have an official repository like what jQuery has done with its user-contributed plugins.

Continue reading Mootools Forge Launched

 

PassShark: More Usable Password fields using Mootools

Posted by teejay on December 11, 2009

pass shark post image

There must be sometimes that you can't seem to type in your password right, resulting in entering it a couple of times after validation errors occur.

Dependencies: Mootools Core, Class.Occlude.js, Log.js and Class.Binds.js

Download: PassShark on Github

License: PassShark is released under the Open Source MIT license

Continue reading PassShark: More Usable Password fields using Mootools

 

Check One Check All Using jQuery

Posted by teejay on November 25, 2009

an image of a table with checkboxes

Today, we will be writing a jQuery Example of our Check One Check All functionality using Mootools

Continue reading Check One Check All Using jQuery