Cyx23: Opera und Cursor verändern

Beitrag lesen

Hallo,

#bspdiv{ width:100px; height:25px;}
#bspdiv:hover{ cursor:crosshair;}

das könnte doch wohl zunächst auch einfach so ausschauen:

  
#bspdiv{ width:100px; height:25px;cursor:move;}  

Allerdings sehe ich bei der ganzen Geschichte noch nicht das Problem,
wird das Div per dhtml bewegt?

Sonst hilft sowas vmtl.:

  
window.onload=function(){  
 document.getElementById('sdeAA').onmousemove = changeCursor;  
 document.getElementById('sdeAA').onmouseover=changeCursor;  
                         }  
  
  
  changeCursor = function()  
  {  
  this.style.cursor = 'move';  
     this.style.border = '1px solid green';  
  
  }  

Grüsse
Cyx23