What is this error and why it's displayed in left corner of browser page...?
Error: Could not get the cursor property. Invalid argument.
Does anyone have a clue...?
cursor property error ?
Re: cursor property error ?
What browser version are you using, please??Vanja wrote:What is this error and why it's displayed in left corner of browser page...?
Error: Could not get the cursor property. Invalid argument.
Does anyone have a clue...?
cursor property error ?
IE 5.0 currently...since i had to uninstall the latest version for some different kinds of problems with SSL and stuff ;( Microsoft rulez...grrr...
Re: cursor property error ?
It seems that IE 4.0 and 5.0 can have a problem with cursor type specification. In instances, where the "pointer" type is used... substituting "hand" type can solve problem. phpWCMS uses this in one instance. In file "/include/inc_front/front_func_inc.php" as shown below:Vanja wrote:IE 5.0 currently...since i had to uninstall the latest version for some different kinds of problems with SSL and stuff ;( Microsoft rulez...grrr...
Code: Select all
if($nav_table_struct["js_over_effects"]) {
$js = " onClick="location.href='".$link."';"";
$js_act = " onMouseOver="this.style.cursor='pointer';"".$js;
$js .= " onMouseOver="this.bgColor='".$nav_table_struct["row_over_bgcolor"]."';this.style.cursor='pointer';".$link_image_id.".src='".$nav_table_struct["linkimage_over"]."';"";
$js .= " onMouseOut="this.bgColor='".$nav_table_struct["row_norm_bgcolor"]."';".$link_image_id.".src='".$nav_table_struct["linkimage_norm"]."';"";
}
Code: Select all
if($nav_table_struct["js_over_effects"]) {
$js = " onClick="location.href='".$link."';"";
$js_act = " onMouseOver="this.style.cursor='hand';"".$js;
$js .= " onMouseOver="this.bgColor='".$nav_table_struct["row_over_bgcolor"]."';this.style.cursor='hand';".$link_image_id.".src='".$nav_table_struct["linkimage_over"]."';"";
$js .= " onMouseOut="this.bgColor='".$nav_table_struct["row_norm_bgcolor"]."';".$link_image_id.".src='".$nav_table_struct["linkimage_norm"]."';"";
}