JQuery JavaScript Tutorial

< html>
  
  
  
    
    
$(document).ready(
  function() {
    $('ul').selectable({
      selecting: function(e, ui) {
        $(ui.selecting).addClass('tmpSelected');  
      },
      unselecting: function(e, ui) {
        $(ui.unselecting).removeClass('tmpSelected');   
      }
    });
  }
);
    
    
ul {
    list-style: none;
}
li {
    background: gold;
}
li.tmpSelected {
    background: yellow;
}
    
  
  
    

          
  • A

  •       
  • B

  •       
  • C

  •       
  • D

  •