0

I am trying to create a popup using aui script tag and i don't no why its not working please have a look at the code

    function popup(url){

    AUI().use('aui-dialog', function(A){
        var dialog = new A.Dialog({
            title: 'Book Details',
            centered: true,
            modal: true,
            width: 500,
            height: 400
            }).plug(A.Plugin.IO,{uri: url}).render();

        }); 

}
Saleem Khan
  • 339
  • 3
  • 16