Is it possible to collect the elements that have been select with the mouse left down mouse over. Similar to selecting text.
window.getSelect().rangeCount.... will give me an element that has focus, and only limited text.
EG:
<div id="E1"> <input type"checkbox"><a href="some entry 1"> Entry1 </a></div><br/>
<div id="E2"> <input type"checkbox"><a href="some entry 2"> Entry2 </a></div><br/>
etc...
if I highlight / select a number of Entries with the mouse. on a mouse up event, how can I identify what entries, elements or divs are selected.
If I hold down the left mouse button and move the mouse over a number of the entry elements, say "Entry3" to "Entry9" are highlighted. Now that these (or atleast the displayed text) are highlighed, as the mouse is release, I can get a OnMouse Release event. In this Event, can I tell what elements, div Ids or anchors or anything that will allow me to know that "Entry3,4,5,6,8,9" were highlighted.