Questions tagged [mootools-more]

MooTools More is the official plugin repository of the MooTools JavaScript Library. These plugins extend and build upon the MooTools Core.

MooTools More (often referred to just as “-more”) is the official plugin repository of the MooTools JavaScript Library. These plugins extend and build upon the MooTools Core (often just “-core”). The MooTools Core is developed by the principal developers for MooTools and is essentially a separate project. MooTools More is more open for contributions and involvement.

Questions with the Tag

When asking a question:

  1. Isolate the problematic code and reproduce it in an online environment such as jsFiddle.
  2. Also tag your question with so that the wider MooTools community on Stack Overflow can find your question.

Related Tags

Resources

33 questions
12
votes
3 answers

How to detect when an element over another element in JavaScript?

I wrote most of the code... And when the element is "fully" over the other element it works. The problem is that I don't just want it to be true when the element is "fully" over the element, I also want it to be true when the element is partly over…
jnbdz
  • 4,863
  • 9
  • 51
  • 93
2
votes
1 answer

Mootools Form.Validate is not firing events

I don't know why the Form.Validate Class is not firing the events when an input fails. This is a simple test I've made: HTML
2
votes
1 answer

Mootools getComputedSize not working in Chrome

I am using the Mootools More function "getComputedSize" on a dynamically created DIV element. It works fine in Firefox but not in Google Chrome: CSS: .resultBox { width: 150px; height: 100px; position: absolute; z-index:…
beingalex
  • 2,416
  • 4
  • 32
  • 71
2
votes
2 answers

Which modules of mootools more I am using?

All mootools more modules are included in my app, but I would like to remove the ones I am not using. Is there a quick way to know which modules I am using starting from the script depending on mootools more?
feychu
  • 1,284
  • 1
  • 14
  • 33
1
vote
1 answer

How do I include all children of a DOM element to be dragged using the Sortable plugin for MooTools?

I am using mootools-more.1817.js...this is my HTML structure:
    Admin Controls
  • Test
  • Admin Controls
marcamillion
  • 32,933
  • 55
  • 189
  • 380
1
vote
1 answer

Fancy FAQS with Mootools 1.4.1?

This is a peice of code for creating a cool effect of FAQs using Mootools 1.2, I can't get it working with mootools 1.4.1. (even with compatibility on) http://davidwalsh.name/flashy-faqs-mootools-sliders Anyone have any ideas? There is a jsFiddle of…
Nicekiwi
  • 4,567
  • 11
  • 49
  • 88
1
vote
1 answer

mootools tool tips not showing for Request.HTML content

I'm having some trouble with adding tips to a Request.HTML function. I have a div which refreshes its content every 30 seconds. The content returned has a series of divs with the class name ".liveReader". Here's the JS I have to initiate the…
Matt Facer
  • 3,103
  • 11
  • 49
  • 91
1
vote
1 answer

How to dyamically adding Elements to Mootools Form.Validator?

Currently I am using Form.Validator from Mootools 1.2.5 and Mootools-More 1.2.5, but i am having a hard time validating an Element's input when dynamically injected into the DOM after ondomready. I was wonder if there's a way to attach…
KJYe.Name
  • 16,969
  • 5
  • 48
  • 63
1
vote
0 answers

Create subtabs using mootools.js

I would like to know is there a way to create tabs inside tabs using moo tools version 1.4. I tried but it looks like sub tabs not working
1
vote
0 answers

Mootools, do something then do something else

is a more efficient way of writing this? I am not great with js and trying to learn how to run multiple effects on a single element after each effect is complete. ie increase div height then fade out after a delay. I would also be interested to see…
ZADorkMan
  • 301
  • 4
  • 19
1
vote
0 answers

stop mootools Drag.Move reducing objects to top left

I am trying to create a UI whereby objects can be moved between two buckets. I am already invested in Mootools and such functionality appears to be available. However, when I instantiate a Drag.Move object on my draggable objects, it changes their…
Chris Walsh
  • 3,423
  • 2
  • 42
  • 62
1
vote
0 answers

Knob drags beyond right boundary [More 1.5.1]

When creating a nice slider using Mootools More 1.5.1 Slider class, I noticed that the 'knob' can be dragged too far to the right. Consider this slider scenario: |--|~|----------------| I find I am able to do this: |---------------------||~| which…
Eclectic
  • 847
  • 1
  • 11
  • 26
1
vote
2 answers

Make resizable methods makes input fields not clickable

I've really strange behavior and I spent a couple of days to try to figure out what is a problem. MooTools methods makes my input fields not clickable, and I don't know why. $$('.class1.class2').makeResizable({ }); Above piece of code needs to…
Haris Hajdarevic
  • 1,535
  • 2
  • 25
  • 39
1
vote
1 answer

MooTools More "new Date().parse()" yields wrong month in Chrome / WebKit

Consider this snippet using the latest MooTools Core & More 1.5 (view in jsFiddle): console.log(new Date().parse('2014-09-20 00:00:00')); When I run this code, I usually get something along the lines of Sat Sep 20 2014 00:00:00 GMT+0200 (Central…
Arc
  • 11,143
  • 4
  • 52
  • 75
1
vote
1 answer

Form.Request event does not fire

I'm having trouble with events in a MooTools Form.Request(): new Form.Request(e.getParent('form'), $('update'), { resetForm: false, onRequest: function () { loading(e) }, onSuccess: function () { toggle(e) …
Lennart
  • 1,018
  • 1
  • 12
  • 27
1
2 3