[jQuery] Re: Set Element Position

2009-07-17 Thread Mean Mike
I think this is what your looking for http://www.west-wind.com/Weblog/posts/517320.aspx found with quick google search Mean Mike On Jul 16, 10:18 pm, NoMatter usbh...@gmail.com wrote: Hi Guys , Its my first time here. My Question is .. When a button click , I need to change the positions

[jQuery] Re: Set Element Position

2009-07-17 Thread Liam Byrne
GET x=$(#elementName).offset().left; y=$(#elementName).offset().top; SET $(#anotherElementName).css({left:x,top:y}); NoMatter wrote: Hi Guys , Its my first time here. My Question is .. When a button click , I need to change the positions of few DIVs . How do I assign X and Y . I saw there