Scrolling with parent DIV
Hi,
I have a main DIV let say 'div_large'. Inside 'div_large', I have two more DIVs lets say 'div_1' and 'div_2'. Inside 'div_1' and 'div_2' there is a image. While image is displayed in both 'div_1' and 'div_2', 'div_large' becomes scrollable. Through jQuery I am dropping a div lets say 'div_field' on 'div_1'. The code for 'div_field' is
$('#div_field').draggable({revert: 'invalid', helper: 'clone'});'field_div' is dropped on 'div_1'. Dropped 'field_div' is appended to 'div_large' by following code.
$('#div_large').append($(ui.helper).clone()));Till here everything is ok. The problem is that when I want to scroll to 'div_2' to place fields on it, 'field_div' do not scroll with its parent 'div_large'
Anybody can help me regarding this. :s