MooTools: How to Request and Evaluate javascript on a button click
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 worki开发者_运维百科ng.(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
精彩评论