I want to position a DIV in a specific coordinates ? How can I do that using Javascript ?
|
|
|
Script its
Or do it as a function so you can attach it to an event like
|
|||||
|
|
You don't have to use Javascript to do this. Using plain-old css:
If you feel you must use javascript, or are trying to do this dynamically Using JQuery, this affects all divs of class "blah":
Alternatively, if you must use regular old-javascript you can grab by id
|
||||
|
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.
if relative to offset parent position the parent relative or absolute. then use following...
|
||||
|
|