문제

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").

도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top