I want to add an edit button similar to the way facebook edits work on the profile information Ideally I want to wrap the control I want to edit in a div and when the mouse moves over any of the contained controls the edit button appears on the top right corner which the user can then click. So the Html might look like this : <div id="OuterContainerToTriggerButton"> <ul id="Menu"> <li>Link 1</li> <li>Link 2</li> <li>Link 3</li> </u> </div> when I hover over the div I want the edit button to show which I'll link to an ASP.net callback to open the edit control. I'm using scriptaculous for my drag and drop funtions.