Jquery JavaScript DHTML


  
    
    
$(document).bind(
  'ready',
  function() {
    $('div').bind('mouseover',function() {
        $(this).addClass('myMouseOver');
      }
    );
    $('div').bind('mouseout',function() {
        $(this).removeClass('myMouseOver');
      }
    );
    $('div').bind('click',function() {
        if ($(this).hasClass('myMouseOn')) {
          $(this).removeClass('myMouseOn');
        } else {
          $(this).addClass('myMouseOn');
        }
      }
    );
    
  }
);
    
    
div {
    border: 1px solid rgb(200, 200, 200);
    width: 10px;
    height: 10px;
    margin: 5px;
    float: left; 
}
div.myMouseOver {
    background: red;
}
div.myMouseOn {
    background: yellow;
}