How do I specify where the html for dialogs are place?
Hello,
By default, JQUI Dialog boxes are placed just before the </body> tag. This is a problem because it prevents the Scope feature within the JQUI
download builder from working. Is there a way to tell the dialog boxes to render themselves somewhere else in the HTML?
Thank you,
Akheem
-------------------------
How it is normally rendered:
- <html>
- <head></head>
- <body>
- <div>Normal html content</div>
- <div>Normal html content</div>
- <div>Where a dialog is placed by default</div>
- </body>
- <html>
How I want it to render:
- <html>
- <head></head>
- <body>
- <div>Normal html content</div>
- <div>Where a dialog is placed by deafullt</div>
- <div>Normal html content</div>
- </body>
- <html>