0

So, I've developed this site, but you can't select some of the text, it isn't the biggest problem but I would like to know what is causing it.

This is the site (http://quinnkeaveney.com/setoff)

The text that you can't select is the large main text in the center-right.

It doesn't appear to be a z-index issue or a user-select issue. Anyone have any ideas?

4

1 回答 1

4

它在你的javascript中:

$(function() {$( ".draggable" ).draggable({ handle: ".navnav" });$( "div, p" ).disableSelection();});

您选择所有 div 并禁用它们的选择:

$( "div, p" ).disableSelection();});
于 2013-07-18T22:00:56.610 回答