Firefox Text Inputs Will Not Focus

I pull my hair out on this ...

Everything I read is talking about the css problem, but I can't figure out which css is causing it.

If you visit http://demo.logzilla.pro and log in (using, of course, FF), you will see the text input for the "Message". IN FF (I use v8) I can’t click - select text input, but if I right-click it will capture focus.

This works fine in Chrome (of course).

Even if / when I completely separate the class tag and just use the simple input text box, it still happens. I even went through and deleted all import imports, but nothing.

Can someone tell me why this is happening and how to solve it? Perhaps this is a jQuery problem? I recently updated (among many other things though ...)

+7
source share
1 answer

Found a problem. In the resulting source code, its line is 1161, which has a line:

$(".column").disableSelection(); 

This is a jquery ui function. Probably there for some reason, but I did not think about why, you will have an idea better than me. Perhaps find a more specific selector for what he wanted to do, or even just use jquery not () to write a specific rule to skip this particular text field.

Good luck.

+15
source

All Articles