Is there a way to remove the blue box of selection around an object?
You should be able to do that by running a javascript on the page, something like:
<script>
var elements = document.getElementsByTagName("*");
myInterval = setInterval(myFunction, 50);
function myFunction() {
for (let i = 0; i < elements.length; i++) {
elements[i].style.border = "none";
}
}
</script>
it still appears, i tried this and it's on my website but nothing changed. So i was wondering if something could be done on the webviewer level.
What "object" (html element) are you selecting in this web page ? An image or two would help...
Sorry for the weird screenshot
Run this js:
document.body.style.webkitTapHighlightColor='transparent';
1 Like
Which block should i use?
EvaluateJavaScript
Are you sure js is evaluated after page has been loaded?
What should i do?
Yeah, you're goated
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.