MCQs > IT & Programming > Mootools > Consider the following code snippet:
    fx = new Fx.Tween($('id1'), {
        onComplete: function() {
            alert('Finish');
        }
    });
    fx.set('opacity', 0.5);
Does the onComplete event of fx fire after the opacity of id1 element is changed to 0.5 by the above-mentioned code?

Mootools MCQs

Consider the following code snippet:
    fx = new Fx.Tween($("id1"), {
        onComplete: function() {
            alert("Finish");
        }
    });
    fx.set("opacity", 0.5);
Does the onComplete event of fx fire after the opacity of id1 element is changed to 0.5 by the above-mentioned code?

Answer

Correct Answer: No

Explanation:

Note: This Question is unanswered, help us to find answer for this one

Mootools Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

Mootools Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it