I'm trying to use jQuery's append() method to append common content to set of div's as follows:
$("#horizontal_menu").append(menu);
$("#vertical_menu").append(menu);
What I'm finding is that the content (in this case, menu) is getting appended to vertical_menu but not horizontal_menu. Does appending to one <div> preclude you from appending that content to another <div>?