How can i call a YUI function that is wrapped inside a YUI().use from javascript?
example Below is a YUI function "runShowAnim" which executes animShow.run(); for an animation effect...
 var runShowAnim = function(e) {
     animShow.run();
 };
I want this effect to happen when i validate something in a javascript function. I tried to call it as below. But it doesn't seem to work.
function notifyUser(message) {
   document.getElementById("msgArea").innerHTML = message;
   runShowAnim();
}