Javascript click and mousedown conflicting
问题 I have a certain scenario where I'm using click to insert a div and then mousedown on that div for dragging it around. I have bound the click to the parent container, and the mousedown on the div itself. But when I mousedown on the div, it fires the click on the parent as well, hence inserting multiple divs instead of dragging the already added div! Is there a way to solve this issue? I can't unbind click , since I need to add 2 divs using the click , and then bind mousedown on these. Update: