Thanks alot,

I'm trying to get position (coordinate) of the image..
Do you know how can I get their position?

Its all code about drag..

<link href="buz.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/iutil.js"></script>
<script type="text/javascript" src="js/idrag.js"></script>
<body>
<div id="parentElem">
        <div id="insideParent"><img src="images/noelbabayla_big.png"></
div>
</div>

<script type="text/javascript">
$(document).ready(
        function()
        {
                $('#insideParent').Draggable(
                        {
                                zIndex:         1000,
                                ghosting:       false,
                                opacity:        0.7,
                                containment : 'parent'
                        }
                );
        }
);
</script>

</body>



and ajaxify is very usefull.. I'll use it in my poject. :)

thank you..

Reply via email to