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?

有帮助吗?

解决方案

It is in you javascript:

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

You select all divs and disable selections for them:

$( "div, p" ).disableSelection();});
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top