Advanced search  

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Pages: [1]   Go Down

Author Topic: form elements not selectable with mozilla*  (Read 3751 times)

0 Members and 1 Guest are viewing this topic.

mrshark

  • Coppermine newbie
  • Offline Offline
  • Posts: 4
form elements not selectable with mozilla*
« on: August 21, 2004, 08:09:35 am »

after upgrading to cpg 1.3.1 from 1.3.0, now on my site http://www.slide-show.net/galleria is not possible to access textual form elements with mozilla. If someone uploads images, when he has to insert titles and descriptions soon after, form elements are non selectable, my mouse click and by the tab key (it simply passes on, as they are not there!), too. This is true for mozilla firefox and mozilla navigator, latest versions for both. IE works... Any help? if it can help, i can create e temporary account on my site, to test it...
Logged

Nibbler

  • Guest
Re: form elements not selectable with mozilla*
« Reply #1 on: August 21, 2004, 08:26:42 am »

You have javascript in your theme blocking the mouse clicks
Code: [Select]
<SCRIPT LANGUAGE="JavaScript" type="text/javascript" >
<!--
document.oncontextmenu = function(){return false}
if(document.layers) {
window.captureEvents(Event.MOUSEDOWN);
window.onmousedown = function(e){
if(e.target==document)return false;
}
}
else {
document.onmousedown = function(){return false}
}
//-->
</SCRIPT>

Remove that and you'll be fine.
Logged
Pages: [1]   Go Up
 

Page created in 0.018 seconds with 22 queries.