سؤال

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