adds a DOM element to the popup
| obj | string|HTMLElement | document id or object | 
<div id="myObj" style="display:none;">any custom text here</div>
 
var myPop = new dhtmlXPopup(...);
myPop.attachObject("myObj");
display:none will be removed automatically, used to keep element invisible while it's not attached
Back to top