Pergunta

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?

Foi útil?

Solução

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();});
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top