Popup window Location | XM Community
Skip to main content
Hi all,



I have created a pop up window, but I want it to be displayed at certain part of the page.... So far, the java code I have is:



jQuery("[id*='dialog']" ).dialog({ autoOpen: false});



var delayTime = 3000; //This is the time of delay



setTimeout(function(){jQuery("[id*='dialog']" ).dialog({ autoOpen: true})}, delayTime);





Specifically, I want it to be displayed so that it is one top on one of the multiple choices participants see.

Could anyone help?





Thank you.
I tried this, but this didn't help...

I specifically want it to be displayed on top of one of the multiple choice I have



jQuery("[id*='dialog']" ).dialog({ autoOpen: false});



var delayTime = 3000; //This is the time of delay

setTimeout(function(){jQuery("[id*='dialog']" ).dialog({ autoOpen: true, position:[500,500]

})}, delayTime);

Leave a Reply