admin管理员组文章数量:1347193
I'm working on a image viewer that has a draggable scrollbar. When the user drags the scrollbar, some of the text on the webpage bees selected. I've tried
window.getSelection().removeAllRanges();
but that doesn't seem to work in IE7/8. Also tried the
document.getSelection().removeAllRanges();
which seems to work just as "well" with IE7/8.
Are there any other ways of doing this? Don't know of any jQuery solutions, but if there are, let me know (:
EDIT: This is the context of the onmouse-event
$("#slideBar").mousedown(function(f) {
mouseDown = true;
some more code...
}
$(document).mouseup(function() {
if (mouseDown) {
window.getSelection().removeAllRanges();
more code...
}
}
I'm working on a image viewer that has a draggable scrollbar. When the user drags the scrollbar, some of the text on the webpage bees selected. I've tried
window.getSelection().removeAllRanges();
but that doesn't seem to work in IE7/8. Also tried the
document.getSelection().removeAllRanges();
which seems to work just as "well" with IE7/8.
Are there any other ways of doing this? Don't know of any jQuery solutions, but if there are, let me know (:
EDIT: This is the context of the onmouse-event
$("#slideBar").mousedown(function(f) {
mouseDown = true;
some more code...
}
$(document).mouseup(function() {
if (mouseDown) {
window.getSelection().removeAllRanges();
more code...
}
}
Share
Improve this question
edited Dec 31, 2011 at 14:07
Lightness Races in Orbit
386k77 gold badges666 silver badges1.1k bronze badges
asked Apr 19, 2009 at 10:59
peirixpeirix
37.8k24 gold badges98 silver badges130 bronze badges
2 Answers
Reset to default 6Try returning false on the functions you use, especially for the "mousedown" event. Also returning false on document.onselectstart and document.ondragstart would help.
You could add some CSS (with jquery) to deal with this:
element {
-moz-user-select: none;
-webkit-user-select: none;
user-select: none;
}
Anyway, for IE, you need to add a proprietary attribute (with jquery) on that element:
unselectable="on"
本文标签: jqueryremove selection using javascriptStack Overflow
版权声明:本文标题:jquery - remove selection using javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743834087a2547065.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论