I want to execute script in BodyContent of Dialog Box,But below code is not working. It is not generating alert in IE8, Is there any way to load script at runtime in dialogBox

AUI().ready('aui-dialog', 'aui-overlay-manager', 'dd-constrain', function(A) { 
         var instance = new A.Dialog({ 
         headerContent: "Title",
         bodyContent: "<script type='text/javascript'>alert('hello');</script>", 
         centered: true, 
         close: true, 
         constrain2view: true, 
         destroyOnClose: true, 
         render: false, 
         draggable: true, 
         modal: true, 
         height: height, 
         resizable: false, 
         stack: true, 
         width: width
         });

Any help will be appreciated

Thanks

link|improve this question

71% accept rate
Should <script yype= be <script type=? – rxgx Jan 4 at 12:39
No errors are returned? Like, AUI or A is not defined? – rxgx Jan 4 at 12:58
Actually in IE8 browser its loading script after opening dialog box, after opening dialogBox at that time I need to call any script,possible?? – Mayur Patel Jan 4 at 13:00
I just want to know how to load script,AUI is already loaded in my code – Mayur Patel Jan 4 at 13:02
Any Help for this?? – Mayur Patel Jan 4 at 13:22
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.