Hello
I have a div for which i have set the cursor:move style. The div shows up as a modal popup window. I would like to let the user move the div around.
<style>
.popup{cursor:move;position: absolute; width: 100%; height: 100%; top: 0; left: 0; margin:auto;}
</style>
<div id="modaldiv" style="popup">
content goes here
</div>
Any help is greatly appreciated.
Thanks.