Is there any way to disallow copying to the clipboard the contents of the spans within the div? When the user highlights all of the div text with their mouse, I don't want the span contents (the numbers in the example below) copying to the clipboard as well.
<div class="codebox">
<span>1</span>Some text here<br />
<span>2</span>More text here
</div>
Im hoping this is possible with just CSS, but perhaps jQuery?