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.

learn more… | top users | synonyms

0
votes
1answer
21 views

Why is event in firefox undefined when defining a pseudo event with MooTools?

I am trying to define a pseudo event with MooTools. It works in chromium, but not in firefox. Both browser are the newest stable version. Here is my event: DOMEvent.definePseudo('ctrl', ...
0
votes
1answer
20 views

How to make Mootools get('html') including values of inputfields

When I have HTML input fields and a change them by direct input they should actually change there value attribute. But when I try to get the whole HTML record it just shows the old value attributes. ...
0
votes
4answers
74 views

Disable select option based on another select option

I have 2 select: <select id="select_1" name="tipo_carta"> <option value="1">90gr</option> <option value="2">150gr</option> <option ...
0
votes
1answer
13 views

Mootools iterate over form and grep values for xhr-request

Is it possible to get all values from a <form> and parse it to mootools/json, so that I can use it in an XHR-request like: var req = new Request.HTML({ method: 'post', url: 'xhr_request.php', ...
0
votes
0answers
29 views

Strange mootools window dragging behaviour

I have a drag-able mootools modal window. The content of the window is a iFrame. I drag the window from inside the iFrame. (it drags but shakes a lot during dragging) Live link here. Question: ...
1
vote
1answer
36 views

Rich Web UI development framework with server-side ajax capabilities [closed]

I'm initiating a new project and aware that we have 2 very good javascript frameworks available: JQuery MooTools In order for me to choose a proper framework for making rich ui and using HTML5, ...
0
votes
1answer
14 views

Mootools tabs showing the first and fade effect

I'm trying to create a tab system which shows the first tab by default and fades in another if clicked on the correct button. I have the basics but can't seem to add the necessary effects. I'm using ...
0
votes
1answer
13 views

Mootools: HtmlTable really multiselect

I have a table parsed to Mootools HtmlTable class. using: var table = new HtmlTable($('htmlTableElement'), { sortable: true, parsers: ['string','number','numberLax','floatLax'], selectable: true, ...
-5
votes
0answers
41 views

Converting a class from Mootools to jQuery [closed]

Can anyone help for convert following Mootools lines to jQuery? GitHub repository Thanks a lot to help me :D
0
votes
1answer
35 views

Dragable window from inside iframe

I have a mootools (Modal) window with a iFrame inside. I managed to fix all parent/child relations with the window except making it "drag-able". The modal has no header, no footer or visible border. ...
0
votes
1answer
30 views

making a todolist in Mootools

i'm making a todolist in mootools and having the following problem. i'm store my todo items in a cookie but the issue is i can't read how many cookies i've set so i can get the value of them. my ...
1
vote
1answer
41 views

Draggable and Rotatable Object in Javascript (Mootools)

Ok, I feel like a big dummy for not remembering remedial math(s), but for the life of me I can't recall how to do basic trigonometry (I'm a backend developer so I've literally never used this in my ...
3
votes
1answer
73 views

why object prototype shows up as html attribute?

I did this (using version mootools-core-1.4.5.js) Object.prototype.walkRecursive = function(callable, bindable) { var p, val, retVal, _bind; _bind = (typeof bindable === 'object') ? bindable : this; ...
-1
votes
2answers
19 views

removing stylesheet link with MooTools

I need to have a stylesheet link removed from my HTML head when the user clicks a link. I found the following, but I need a MooTools equivalent. To remove a stylesheet simply give it an id <link ...
1
vote
1answer
31 views

Remove MooTools events using a Greasemonkey script?

I'm trying to modify a page that uses MooTools to add event-listeners to some fields, like so: $('inputPassword').addEvents({ keypress: function(){ new ...
0
votes
0answers
22 views

Superfish mouseout delay not working - Menu disappears fast

I am using Superfish Menu and Joomla 2.5 My other superfish options like mouse intention work just fine, but I can't get the mouseout delay to work with the input that I give it. I am using the ...
0
votes
0answers
23 views

How to open a smoothbox iFrame popup, on button cick,for a dynamic url

We can open a smoothbox popup from a link with static url like this <a id ="join-request" href="<?php echo $this->baseUrl() ?>/register/selected_groups/test?>TB_iframe=true" ...
1
vote
1answer
63 views

Returning HTML elements

I am using some JavaScript to create new HTML elements and then I return them using the MooTools inject method. display: function() { var threadTitle = new Element('h2',{ ...
-2
votes
2answers
62 views

JavaScript - Regular expression to convert image source

My question is related only to JavaScript regular expressions. I'm building a simple Lightbox for Wordpress with Mootools JavaScript framework. Wordpress stores pictures in a variety of sizes with ...
0
votes
1answer
28 views

mootools validate and submit form on link click

How can I validate my form and submit it on link click event? My code below: new Element('a',{ 'html': "To cart", 'class': 'shop_add', ...
1
vote
1answer
88 views

AJAX reload div after complete

I am trying to reload just a div once a function has been clicked and executed. $('newThread').addEvent('submit', addThread); function addThread(e){ e.stop(); var threadRequest = new ...
-1
votes
2answers
37 views

Are there any javascript frameworks inspired by mootools? [closed]

I've used mootools in the past and still do, not as much as i use jQuery mainly beacuse thats what we use at my current employer. But the magic that mootools class provides is IMO soooo awesome, im ...
2
votes
1answer
37 views

Populate HTML input form element with data

I wish to populate html input boxes with the data-id from certain elements. <h2 class="postItem" data-id="23" href="#"></h2> This an example of a H2 element I have in my site, what I ...
0
votes
1answer
41 views

JS carrousel stop when mouse over

I run a real estate site and I have a property carrousel, I would like to modify this JS in order to stop the carrousel when user over with mouse. Code: var Ticker = new Class({ setOptions: ...
1
vote
1answer
32 views

Edit button with comments using MooTools/AJAX

So I'm using a PHP API to interact with, to build a forum using MooTools. I can get comments from my database and add comments, but I want to inject an edit button to coincide with each comment. I ...
1
vote
1answer
27 views

Injecting/returning a new element on screen

The code below shows that the div is injected into the a element. How do I display the div element so that it is not injected into anything. so instead of <a href="#"> <div ...
0
votes
1answer
49 views

Why isn't the data-id being selected by my function?

I am trying to get the data id to be shown in an alert menu when the user clicks on a link. But instead of the number I am getting 0 for each link. Here is a JSFiddle of the issue JS ...
0
votes
1answer
29 views

return instance of database in javascript

Hi There best collegue, i'm doing some experience with Object Oriented Javascript in combination with Mootools and creating a todolist for exercise. i've the following issue. i've a class called ...
1
vote
1answer
55 views

Close mootools dialog from inside of iframe

Q: How to close a mootools dialog from inside an iFrame? I have the following code to open the dialog box on the parent: window.addEvent("domready", function(e){ /* Modal */ ...
0
votes
2answers
29 views

addEvent doesn't work with chrome 25 and OSX

I've a problem only with chrome 25 and osx. I get results with this line console.log($$('.sort-box-slt-pl-opt')); But with this lines $$('.sort-box-slt-pl-opt').addEvent('click', function(event){ ...
0
votes
1answer
30 views

Extending Element in MooTools gives error “Uncaught TypeError: Cannot call method 'set' of null”

I have this very simple MooTools script: var MyElement = new Class({ Extends: Element }); which gives the error: Uncaught TypeError: Cannot call method 'set' of null I'm using MooTools 1.4.5, ...
1
vote
1answer
68 views

Changing the data in URL strings - Using API for database requests

Using an API I am creating a forum using Javascript. When a user clicks on the thread title on the index.html page they are taken to a page called thread.html on here I am using an API call to ...
0
votes
1answer
30 views

Mootools absolute TIP positioning

I need to position a Mootool events calendar inside an Iframe. Unfortunately the tool tip which appears on a date with events, get always cut by the boundary of the Iframe. How can I set the tooltip ...
0
votes
1answer
14 views

retrieve items from textboxlist in mootools

I have a problem with textboxlist component that I found at http://www.devthought.com/2008/01/12/textboxlist-meets-autocompletion/ I need to retrieve the selected items to bind it to a jsf backing ...
1
vote
1answer
42 views

Cookie set on one page is not retained on other pages using Javascript

I have set a cookie: Cookie.write('callstream', new Date, { path: '/', duration: 14, secure: false, }); The cookie is set correctly on the page where i set the cookie, however once i ...
1
vote
1answer
45 views

Slick (mootools) selector engine documentation

Mootools slick selector engine documentation seems kind of sparse / unfriendly. http://mootools.net/docs/core/Slick/Slick An example: Normally i can reach the last child of an element with: ...
0
votes
2answers
55 views

MooTools fade in / fade out effect on a table

I am using MooTools library. I want my fade in fade out effect on table id <table id="myId"></table> i have working click event aNextCal.addEvent('click',function(){ //Click ...
0
votes
1answer
19 views

Setting an attribute without value for a mootools element

I have to re-create the following html element using Mootools <input type="file" name="file[]" id="file" multiple /> for which I have used the following code new Element('input', { ...
-1
votes
0answers
58 views

JavaScript Conflict : “Uncaught error” [closed]

I'm having a problem with a JavaScript conflict I think. I'm not a pro with JQuery, JavaScript and Mootools... To see you can go on www.taylorswiftsource.net, and click, on the homepage, on load more ...
0
votes
1answer
82 views

Window.addEvent is not a function after merging js files

well i used joomla's ScriptMerge to merge all js files into one but now i get window.addEvent is not a function on squeeze box initialization,everything else is working fine except for this...i ...
0
votes
1answer
70 views

Joomla's modal window removing id and class names

I have a form in a module that I want to appear in a modal window. Depending on the id the window may be blank, or if it does show any content all classes and ids are removed, so I can't validate or ...
0
votes
1answer
19 views

Timing of mootools periodical animation

On my html page I have a few tiles, with a small animation in them, made using mootools. I call them like this: $$('.sliding').each(function (e) { var fx = function() { ...
0
votes
3answers
74 views

Javascript webapp CSS3 animation

I've been searching for a simple jquery animation library for my mobile webapp Basically, I wanted to have the "Flip" (flipboard) and "Slide" (flipboard, Android like slide in/out, old div scales ...
0
votes
1answer
48 views

Javascript Need to pull a value from a function within an array

Here is my code: <script> window.addEvent('domready', function(){ new Request.Stocks({ stocks: ['SXCL'], onComplete: function(yahoo){ var result = ''; ...
0
votes
0answers
56 views

GWT with mootools Slider onChange without parameter?

I would have some questions about Mootools JavaScript framework. I am sending some snippets, which doesn't work in GWT. var mySlide = new Slider(slider, knob, { initialStep: 59, ...
0
votes
1answer
126 views

File upload progressbar onclick event with mootools-form-upload

i am using file upload in my current project. when i click browse button, the file will be uploaded automatically and read number of lines and display that details immediately. I finished this task. ...
0
votes
1answer
46 views

Can't execute an onLoad event

I have problems using an OnLoad event in a function: (function () { var ds = document.createElement('script'); ds.type = 'text/javascript'; ds.async = ...
0
votes
1answer
27 views

slideIn after slideOut in mootools 1.1

I am trying to build a custom code in mootools 1.1, what am doing is when you click a button the container slideOut first and delay for few seconds let say 2sec then slideIn again, firstly the ...
0
votes
1answer
72 views

Make AJAX request using mootools and node.js with expressjs

I'm trying establish an AJAX connection on node 0.10.3 using mootools. My code is: Client var ajax = new Request({ url: '/register', method: 'post', onSuccess: function(responseText){ ...
0
votes
2answers
36 views

Event handler for odd and even elements

I have a bunch of span elements with css class option <div> <span class="option"> </div> <div> <span class="option"> </div> <div> <span class="option"> ...

1 2 3 4 5 44