Tagged Questions

MooTools is a compact, modular, Object-Oriented JavaScript framework designed for the intermediate to advanced JavaScript developer. It allows you to write powerful, flexible, and cross-browser code with its elegant, well documented, and coherent API. Before asking, make sure you have consulted the documentation and looked for similar questions already answered. *Always* post the Mootools Version! For plugins, visit the MooTools Forge

learn more… | top users | synonyms

52
votes
21answers
3k views

Why is jQuery so widely adopted versus other Javascript frameworks?

I manage a group of programmers. I do value my employees opinion but lately we've been divided as to which framework to use on web projects. I personally favor MooTools, but some of my team seems to ...
24
votes
5answers
6k views

JavaScript eyedropper (tell color of Pixel under mouse cursor)

I am looking for an "Eyedropper" tool, that gives me the hex value of the pixel the mouse cursor is under, in Javascript for a CMS. For Firefox, there is the excellent ColorZilla extension that does ...
24
votes
5answers
23k views

event.preventDefault() function not working in IE. Any help?

Following is my javascript(mootools) code: $('orderNowForm').addEvent('submit', function(event){ event.preventDefault(); allFilled = false; $$(".required").each(function(inp){ if ...
22
votes
2answers
1k views

Chrome fails to free memory, garbage collection doesn't occur as expected (Mootools/MochaUI library)

Background: I'm currently working on an intranet site that makes use of the MochaUI library (working from the virtual desktop demo). I'm using Mootools 1.2.4 and MochaUI 0.9.7. The windows that are ...
16
votes
16answers
6k views

Should I convert from MooTools to jQuery?

I have a fairly large codebase that depends on MooTools v1.11 and am about to convert to version 1.2. Since this is a pretty major overhaul, I've toyed with the idea of converting to jQuery. ...
13
votes
1answer
1k views

How to enable -webkit-animation/transition-property for :before and :after pseudo elements?

How to enable -webkit-animation for :before and :after pseudo elements? You can see in http://jsfiddle.net/4rnsx/ that it is not working for :before and :after. And here I am trying to enable this ...
12
votes
19answers
1k views

I've learned jQuery, should I go back and learn “proper javascript”?

I'm primarily a server side developer, working professionally with PHP. For javascript I always use a framework (jQuery/mootools), will this be a professional disadvantage for me down the line? Should ...
12
votes
7answers
12k views

Javascript library for building desktop-like web application: ExtJS, jQuery, YahooUI, Mocha, SproutCore, Cappuccino, others?

I am evaluating several Javascript UI toolkits for building web applications that have a desktop-like feel, mainly because of dialogs and window management. I looked at several options - here are my ...
11
votes
2answers
579 views

What does MooTools' Function.prototype.overloadSetter() do?

I'm looking through the MooTools source to try and understand its .implement() and .extend() utilities. The definition of each refers to a function defined like this: var enumerables = true; for ...
11
votes
10answers
956 views

Do javascript developers need to know jquery?

If you were to hire a javascript developer would you expect them to know jquery? I just started using stack overflow this week and knew that jquery led the pack, but didn't realize the extent of it ...
11
votes
18answers
12k views

What advantages does jQuery have over other JavaScript libraries?

I am trying to convince those who set standards at my current organization that we should use jQuery rather than Prototype and/or YUI. What are some convincing advantages I can use to convince them?
10
votes
6answers
1k views

Will existing JavaScript frameworks incorporate CommonJS?

JavaScript frameworks like Prototype, jQuery, YUI, MooTools, Dojo, et al. all seem to target client-side developers, with the focus on enabling common user interaction patterns to be implemented more ...
9
votes
4answers
108 views

For loop improved with “>>>” operator?

I'm updating mootools from 1.3.2 to 1.4.1. I saw a strange change. From this for (var i = 0, l = this.length; i < l; i++){.... to this for (var i = 0, l = this.length >>> 0; i < l; ...
9
votes
2answers
3k views

Great uploader like uploadify but with a “no-flash” fallback

Is there a great uploader script that uses jQuery, like uploadify, but with a fallback option for when flash is not available? I tried FancyUpload, which has this and uses an invisible IFRAME to do ...
9
votes
6answers
9k views

OO JQuery and classes

I'm working on a site and using JQuery for essentially the first time. I've mostly used MooTools for previous projects, and I have a few widget classes I've written using the MooTools Class ...
9
votes
5answers
8k views

Painting shapes in Javascript

Is there any good alternative to the html5-element canvas to paint shapes like hexagons using javascript, that works cross-browser (including the horrible IE6)? I have been using jQuery and jQuery ...
8
votes
2answers
189 views

Never-ending “Connecting” message after AJAX form submit

I have a class which enables forms with a file-type input to be submitted via AJAX. It creates a hidden IFRAME element, changes the form target property so that it submits to the IFRAME, submits the ...
8
votes
7answers
407 views

What kind of JavaScript is this?

I have an application that has this format scattered around but I dont know what kind it is. It's not jQuery, so what is it? $('some_edit').style.display = "block"; $('some_views').style.display = ...
8
votes
3answers
543 views

a new approach to web development: request for tools and components recommendations

I'm searching for the best possibility to write web applications that are heavy with JavaScript . So I'd like to present you my ideas and ask for your opinions and alternatives on this, please :) 1 ...
8
votes
7answers
480 views

How can I write code without “needing” comments for readability? [closed]

Possible Duplicate: Is it possible to write good and understandable code without any comments? When coding often I hear that if comments are needed then it means that the code is too hard ...
8
votes
6answers
2k views

How to execute “eval” without writing “eval” in JavaScript

Here's the deal, we have a big JS library that we want to compress, but YUI compressor doesn't fully compress the code if it finds an "eval" statement, out of fear that it will break something else. ...
8
votes
6answers
562 views

a simple question on jquery closure

what does this mean? (function($){ })(jQuery); to make the question clearer, what does wrapping a function in parenthesis mean in JS (sorry, I'm a bit confused on the concept of closures). What ...
8
votes
10answers
4k views

MooTools and JQuery Side by Side

I just inherited some web pages which uses MooTools. I never used MooTools. Now I need to add some functions on the page, I wonder if it's a good idea to use jquery and mooTools on the same page? ...
8
votes
6answers
3k views

Programmatically determine DPI via the browser?

I would like to programmaticaly determine the DPI of a user's display in order to show a web page at a precise number of units (centimeters/inches). I know it a weird request: it's for a visualization ...
8
votes
1answer
4k views

CSS selector for targeting only immediate children and not other identical descendants

I have nested sortable list that can have items dynamically added or removed and can be nested n-levels deep. On nesting, a new ul element is injected into whatever li element is selected to be the ...
8
votes
3answers
9k views

How do I track and debug JavaScript memory leaks in Firefox?

I've been trying to track this one for literally a month now without any success. I have this piece of code on an car advertising website which basically allows thumbnails to rotate in search results ...
7
votes
2answers
88 views

strange syntax in javascript

I'm working on debugging some code someone else wrote (using Mootools as the base library), and I came across this function: [note, $H(options.text).getKeys()].flatten().each(function(option){ // ...
7
votes
2answers
284 views

What is jQuery (edge) in jsfiddle.net?

In jsfiddle.net if one choose framework as jQuery or Mootools they will get an option for choosing jQuery ( edge ) and Mootools( edge ). I googled it quite a bit but did not get any good answers. My ...
7
votes
0answers
338 views

Another time: mootools vs jQuery [closed]

I've just finished to translate (in Italian...for Italian developers that are too lazy to learn English :D ) this great article (by Aaron Newton) about the topic the title refers to: ...
7
votes
3answers
502 views

Select text and then calculate its distance from top with Javascript?

Is it possible with JavaScript to find a given string of text on a webpage, and then calculate its distance (in pixels) from the top of the page? If so, an example would be appreciated.
7
votes
6answers
22k views

Uncaught SyntaxError: Unexpected token :

I am running an AJAX call in my MooTools script, this works fine in Firefox but in Chrome I am getting a Uncaught SyntaxError: Unexpected token : error, I cannot determine why. Commenting out code to ...
7
votes
5answers
762 views

What are your favorite Mootools/Prototype native object prototypes?

Us Mootoolers and Prototypers (what few are on this site) usually carry around a handy toolbox of functions we have created (or borrowed) that we implement on native javascript objects to make our ...
6
votes
3answers
166 views

Retrieving percentage CSS values (in firefox)

I have a problem retrieving the exact css property value (in '%') on firefox. Suppose we have this extremely simple markup: <div id="box">box</div> and this css: #box{ ...
6
votes
1answer
273 views

Prevent Mootools Mouseenter from firing on hidden child elements

I have a content slider that auto rotates that when you hover over it it will stop rotating. My problem is this bit of code here: $$('.holder').addEvents({ mouseover: function(){ ...
6
votes
4answers
296 views

Is there an easy way to remove mootools namespace pollution?

A clientside javascript library I've developed uses objects as hashes in some areas. It loops through objects parsed from Json data with a for...in loop using the property name as a key. eg... ...
6
votes
4answers
4k views

How different is Ext JS from others like jQuery and Mootools

When looking at Ext JS, I don't get the feeling that it's meant for the same things as jQuery and Mootools. Whilst jQuery and Mootools help with the general workings of a site, Ext JS seems to be ...
5
votes
3answers
209 views

Javascript parse html, modify anchor tags that contain images

I have a vague idea on howto do this but I hoped more experienced devs might have a simpler solution. I have a sting of HTML code from a JSON feed and where an "a" tag exists with an images inside ...
5
votes
2answers
253 views

Retrieve width/height of a css3 scaled element

Good morrow folks, I'm fighting against an oddity (I think) of the offsetWidth property. this is the scenario: I've got, let's say, a span tag, in my js, at a certain point I perform a css3 ...
5
votes
4answers
144 views

Oject Oriented Javascript

I have been working on the user interface of my website (www.swalif.com: do use chrome to translate if you like to). Not being familiar with jQuery I started off with javascript and now the file is ...
5
votes
2answers
573 views

Choosing MooTools over Google closure?

I am in a process to select javascript library for our new web application. This app is not very UI heavy but has forms, reports, search, calendars, tabs and target multiple countries like most web ...
5
votes
1answer
695 views

Slick vs. Sizzle — Pros and Cons of CSS selector engines

When would I want to use Slick and when would I want to use Sizzle? What are the pros and cons of each as a standalone CSS selector engine? How easily can Slick be used with JQuery? Can Sizzle be ...
5
votes
4answers
187 views

DOM Element Width before Appended to DOM

I'm sure the answer is no, but is it possible to determine the width of an element before it is appended to the DOM? Once it's appended, I know I can use offsetWidth and offsetHeight. Thanks
5
votes
4answers
4k views

jQuery and MooTools Conflict

Okay, so I got jQuery to get along with MooTools with one script, by adding this at the top of the jQuery script: var $j = jQuery.noConflict(); and then replacing every: $( with $j( But how ...
5
votes
1answer
975 views

jQuery: Open File Upload window by pressing a link or image.?

Is this possible to open a File Upload window when clicking on a image or link. (like what exactly in the <input type="file" name="upload" />).
5
votes
2answers
3k views

Adding Elements inside another DOM element in MooTools

Can I add an object of Elements inside another DOM element using grab or inject or anything else? There are two items in the object, both of type Element that are created through Javascript: var ...
5
votes
3answers
1k views

Mootools “Extends” plus “Implements”

I like to write my code slim and sexy (on the performance and memory side), I am using Mootools and was wondering if I was using it the correct way, also you can help me by telling me how to test my ...
5
votes
4answers
9k views

How do I fade in and out a hidden element using Mootools

I am trying to fade in a hidden element, and then fade it back out again using mootools. I can't just use $('my_div').fade('toggle'), because that assumes the element is always visible, whereas my ...
5
votes
10answers
7k views

How do I inject javascript to a page on IE 8?

Lets suppose that I have the following markup: <div id="placeHolder"> </div> and I have a javascript variable jsVar that contains some markup and some javascript. By using Mootools 1.1 ...
4
votes
1answer
171 views

what are advantages of mootools over jquery? [closed]

In short notice this can be a fairly stupid question. But I still would to know what are the advantages/disadvantages of using MooTools JS compared to jQuery? Personally I find jQuery uses way ...
4
votes
4answers
306 views

In terms of speed: jQuery or Mootools

I've just been looking through the Mootools documentation and it seems to do everything jQuery does with loads of extra features. Incredibly, it all fits into less space than jQuery does. I've always ...

1 2 3 4 5 31