Login Register

global function

Dojo.connect

Please help. I am unable to connect these simple function using dojo.connect. The commented code [dojo.connect(anchor,"onclick",dummyAgain)] works but not the connection b/w [dojo.connect(dummy1,dummyAgain)]

 

function dummyAgain(){
console.debug("dummyAgain");
}
function dummy1()
{
console.debug("dummy1");
}
function dummy(){
console.debug("dummy");
dummy1();
}

Syndicate content