Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to position a DIV in a specific coordinates ? How can I do that using Javascript ?

share|improve this question

3 Answers

up vote 11 down vote accepted

Script its left and top properties as the number of pixels from the left edge and top edge respectively. It must have position: absolute;

var d = document.getElementById('yourDivId');
d.style.position = "absolute";
d.style.left = x_pos;
d.style.top = y_pos;

Or do it as a function so you can attach it to an event like onmousedown

function placeDiv(x_pos, y_pos) {
  var d = document.getElementById('yourDivId');
  d.style.position = "absolute";
  d.style.left = x_pos;
  d.style.top = y_pos;
}
share|improve this answer
I retrieve the x,y coordinates from mouse click, how can I display the Div in the position of the mouse ? – Adham Jul 23 '11 at 20:08
@adham you already have the x,y coordinates? Just apply them in place of x_pos,y_pos – Michael Berkowski Jul 23 '11 at 20:14

You don't have to use Javascript to do this. Using plain-old css:

div.blah{
    position:absolute;
    top: 0; /*[wherever you want it]*/
    left:0; /*[wherever you want it]*/
}

If you feel you must use javascript, or are trying to do this dynamically Using JQuery, this affects all divs of class "blah":

$('.blah').css('position', 'absolute');
$('.blah').css('top', 0); //or wherever you want it
$('.blah').css('left', 0); //or wherever you want it

Alternatively, if you must use regular old-javascript you can grab by id

   document.getElementById('myElement').style.position = "absolute";
    document.getElementById('myElement').style.top = 0; //or whatever 
    document.getElementById('myElement').style.left = 0; // or whatever
share|improve this answer
what? you should use .class instead of myElement and top & left instead of x & y, should'nt you? – Tomas Jul 23 '11 at 20:05
@Tomas, indeed, thanks! – dave Jul 23 '11 at 20:10

well it depends if all you want is to position a div and then nothing else, you don't need to use java script for that. You can achieve this by CSS only. What matters is relative to what container you want to position your div, if you want to position it relative to document body then your div must be positioned absolute and its container must not be positioned relatively or absolutely, in that case your div will be positioned relative to the container.

Otherwise with Jquery if you want to position an element relative to document you can use offset() method.

    $(".mydiv").offset({ top: 10, left: 30 });

if relative to offset parent position the parent relative or absolute. then use following...

    var pos = $('.parent').offset();
    var top = pos.top + 'no of pixel you want to give the mydiv from top relative to parent';
    var left = pos.left + 'no of pixel you want to give the mydiv from left relative to parent';

    $('.mydiv').css({
         position:'absolute',
         top:top,
         left:left
    });
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.