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 am designing a webpage that has links for images. When the user clicks on these links, a image appears. I am using jQuery to reveal the images slowly below the link. But I want these images to be movable across the webpage so that user can move the image away from text continue reading. The image must stay on the same page. I just need a drag-able function.

share|improve this question
2  
What have you tried so far? – Robert Harvey Jan 3 at 18:33
1  
Have a look at JQueryUi draggable. – Iznogood Jan 3 at 18:33
Please add more information as to what you've tried, and maybe some code we can look at. As it stands, this is not a very good question. – James Rasmussen Jan 3 at 18:38

closed as not constructive by Iznogood, NullPoiиteя, BalusC, bookcasey, cryptic ツ Jan 3 at 18:54

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

Try out jQuery UI's "draggable" on the image: http://jqueryui.com/draggable/

share|improve this answer

if the user has to be able to move the image all over the screen just put

position:fixed;

at the image and use JQuery UI draggable http://jqueryui.com/draggable/ to move it around the screen

share|improve this answer
This solution wont work! – Gravity M Jan 3 at 19:44
why? are you getting errors from 'draggable'? – Dracony Jan 3 at 20:04

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