Most voted "mootools" questions
Mootools is a compact, modular, object-oriented Javascript framework designed for intermediate to advanced Javascript developers. It allows you to write powerful, flexible and cross-browser code with its sleek, well-documented and coherent API.
Learn more…11 questions
Sort by count of
-
7
votes2
answers531
viewsHow to avoid conflict between jQuery and Mootools
Good practices to avoid conflicts between jQuery and Mootools libraries? This example makes the mistake Uncaught TypeError: Object [object Object] has no method 'fade' //codigo Mootools…
-
7
votes1
answer61
viewsWhat is the difference between $('id') and $('#id') in Mootools?
For those who, like me, are used to jQuery, the existence of two functions to select elements in Mootools seems a little confusing. Whereas I have some element like <div…
mootoolsasked 10 years ago bfavaretto 64,705 -
6
votes2
answers3548
views -
3
votes1
answer47
viewsMootools detect page movement
How do I detect when a page is rolled to a certain point, and when it reaches that point perform a certain action. That is, using Mootools, as the Event scroll, change the style of an element. Take…
-
2
votes1
answer76
viewsProblem with select in Knockoutjs and Mootools
I’m having a problem in a simple test with Knockoutjs in conjunction with Mootools: <div> <select data-bind="foreach: animais"> <option data-bind="text: nome, value:…
-
2
votes2
answers61
viewsMootools request: onSuccess is not triggered
I’m using Knockoutjs in conjunction with Mootools, but I’m having problems with the Request. <div class="form-group"> <select data-bind="options: classificacoes, optionsText:…
-
2
votes1
answer70
viewsWhat’s the real gain from using Mootools!
Not only in the manipulation of elements in Dom, but in its object-oriented architecture. What is the real gain in using instead of Jquery. We take as an example a simple stock control system, with…
-
2
votes1
answer143
viewscheck empty input
I have an input text and want to check if the value is empty. In my example I have this: var qttDeclared = tr.getElement("input[name$='[qttDeclared]']").get("value").toInt() if(qttDeclared == "") {…
-
1
votes0
answers65
viewsHow to debug (show errors) on a system that uses Mootools?
all right? I don’t know JS in depth, but I need to debug a chunk of code that uses Mootools. When I tell my code to write an array with print_r or debug (from cakephp), I don’t see anything and the…
-
1
votes1
answer21
viewsMootools interfere with jQuery?
Good morning. My site uses jQuery, but I need to add a code that sends a confirm() to close the browser, however I realized that only works with the library mootools: window.addEvent('load',…
-
1
votes1
answer136
viewsAnimate the position of div elements with Mootools
How do I change the position of a div after loading the page? That is, having two div’s that after loading the page one appears on the right and the other on the left, this using Mootools. The…