Questions tagged [mootools1.2]

MooTools 1.2 is a version of the MooTools JavaScript Library first released on June 12th, 2008.

MooTools 1.2 is a version of the MooTools JavaScript Library () first released on June 12, 2008. MooTools 1.2 is no longer being maintained. MooTools 1.2.5 is the last version of the 1.2 series.

Updates to MooTools 1.2

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.
44 questions
0
votes
1 answer

mootools conflicting with iepngfix.htc

I have just placed iepngfix.htc to fix the PNG problem in ie 6, but when I include the mootools 1.3 png fix is not working. Do you have any fixing code for this? Thanks Avi
Avinash
  • 6,064
  • 15
  • 62
  • 95
0
votes
1 answer

How to create MooTools class of a variable name

Consider this code: var Someclass = new Class(); var Anotherclass = new Class(); var classes = ['Someclass', 'Anotherclass']; and I want to create mootools class with a dynamic name. Of course i can do it by eval: eval('var obj = new ' + classes[0]…
hamczu
  • 1,774
  • 12
  • 14
0
votes
2 answers

mootool event delay on specifed timing

anyone come across a code that only fire event when the mouse enter the element for certain time ? but won't fire event if only hover or passed thru the element quickly..
0
votes
2 answers

how to determine when a request in completed in mootools?

I am new to moootools and I am creating a Template class,This is my code - var Template = new Class({ Singleton : true, template : '', /* gets the component type template */ get : function(componentType){ var tplUrl =…
Yosi
  • 2,936
  • 7
  • 39
  • 64
0
votes
1 answer

Why is IE7 ignoring the css background?

I am trying to add some div elements by using inject of mootools. Here is part of my code var elm = document.createElement('div'); elm.setAttribute('id', 'leftHeader'); elm.setAttribute('class', 'leftHeader'); var div_before =…
Hello Universe
  • 3,248
  • 7
  • 50
  • 86
0
votes
0 answers

Javascript error when opening popup window in IE9

I am getting the following js error on the console when attempting to open a popup window using MooDialog.Request. It works in IE7/IE8 and Chrome, but not IE9 and possibly later IE versions. I have seen some similar questions related to this, but…
jtb
  • 139
  • 7
0
votes
2 answers

How can I get the size of a file using JavaScript (preferably using MooTools 1.2)?

How can I get the size of a file using JavaScript (preferably using MooTools 1.2)?
Avinash
  • 6,064
  • 15
  • 62
  • 95
0
votes
2 answers

find the position of the cursor where user have clicked and display one div where user have clicked

I want to determine the position of the cursor where user have clicked. And display one div at bottom side of the page where user have clicked. For example on stack over flow home page if some one click on the logo. Then the div should be displayed…
Avinash
  • 6,064
  • 15
  • 62
  • 95
0
votes
1 answer

Sort list box options using mootools1.2

Below is my HTML I want that this select box will be sorted according…
Avinash
  • 6,064
  • 15
  • 62
  • 95
0
votes
1 answer

MooTools build hash in 1.2.4.4

We are trying to upgrade our MooTools installation from 1.2.4 to 1.2.6. The original developer included a "more" file with optional plugins, but because it is compressed we can't tell what was included in that file. I'd rather not hunt and pick…
Fook
  • 5,320
  • 7
  • 35
  • 57
0
votes
1 answer

Mootools 1.2 and Firefox $$ selecting too many elements

Browser must be firefox Mootools version must be 1.2.x $$ selector returns too many elements only in firefox http://jsfiddle.net/e77Xp/4/ HTML
lf
styks
  • 3,193
  • 1
  • 23
  • 36
0
votes
0 answers

Mootools with AJAX onSuccess

I am trying to display a successful message once the form gets sent: $('emeraldForm').addEvent('submit', function(){ onSuccess: function(){ alert('df'); } });
Aessandro
  • 5,517
  • 21
  • 66
  • 139
0
votes
1 answer

Mootools overlay fade in

Hi how do you make a div fade in nicely in mootools? var el = $$('div.img_wrapper'); el.addEvents({ mouseenter: function(){ fade in div }, mouseleave: function(){ fade out div } });
Aessandro
  • 5,517
  • 21
  • 66
  • 139
-2
votes
4 answers

Why is firebug pointing out an error with my code?

Could someone please tell me why firefox doesn't like this section of code? function TB_position(){ $('TB_window').set('morph', { duration: 75 }); $('TB_window').morph({ width: TB_WIDTH + 'px', left: (window.getScrollLeft() +…
daniella
  • 403
  • 7
  • 17
1 2
3