I can't use dojo fadeOut.
Please, see my html:
Hide me!
Please, see my js:
function fadeOutDiv(){
alert("fadeOutDiv()");
//dojo.fadeOut({ //no func
//dojo.style.getOpacity problem no function
var div = dojo.byId("fadeOutDivId");
div.style.opacity = 1;
alert("Opacity 1 = " + div.style.opacity);
alert("id 1 = " + div.id);
dojo.lfx.html.fadeOut({
node: dojo.byId("fadeOutDivId").domNode,
duration: 2000
}).play();
}
alert("fadeOutDiv()");
//dojo.fadeOut({ //no func
//dojo.style.getOpacity problem no function
var div = dojo.byId("fadeOutDivId");
div.style.opacity = 1;
alert("Opacity 1 = " + div.style.opacity);
alert("id 1 = " + div.id);
dojo.lfx.html.fadeOut({
node: dojo.byId("fadeOutDivId").domNode,
duration: 2000
}).play();
}
