i would to create an image that the user can drag and drop any where in the page.
then the position would be saved so when he opens the page again it will be where he left it.
thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Essentially you want to record the mouse position, then absolutely position the element based on where the mouse is, and on mouse up serialise the coordinates and save them. You could either send them to the server via ajax, or (depending on context), save them into the users local storage. That would have the benefit of avoiding a server round trip if the use case is fairly trivial.
http://docs.jquery.com/UI/Draggable is a nice example of how this would work without having to do the difficult parts!