Pergunta

I am using mootools v1.3. I added a click event to button with id as "submit_details". All I want is to load an another mootools script on button click event and execute it. I tried a way as below

$('submit_details').addEvent('click',function(){
   alert('checkepoint-1');
   myScript = new Asset.javascript('js/main.js',{});
   alert('checkepoint-2');
});

But its not working.(It alerts only "checkepoint-1").

Foi útil?

Solução

Try using without new keyword.

$('submit_details').addEvent('click',function(){
   alert('checkepoint-1');
   myScript = Asset.javascript('js/main.js',{});
   alert('checkepoint-2');
});

For more details, check here.

http://mootools.net/docs/more/Utilities/Assets

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top