How can I prevent the selection of text in IE?
You can use Javascript and do:
document.onselectstart = function() { return false; }
document.onmousedown = function() { return false; }
The first one works for IE and the second one does Mozilla-based browsers.