EhabBug / dropdown-check-list

Automatically exported from code.google.com/p/dropdown-check-list
0 stars 0 forks source link

dropdown-check-list does not respond to "mouseenter" #313

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
** What steps will reproduce the problem?
using mouseenter on a list item.

** What is the expected output? What do you see instead?
nothing happens. 

** What is your environment?
-- DropDownCheckList version: 1.4
-- jQuery version: 1.6.1
-- jQuery UI version: 1.8.13 and  1.8.3
-- Browser and version: firefox

** Please provide any additional information below/Please attach sample
html

i am trying to create a jquery effect on mouseenter, which does not work:

var C = $("#a20 option");
 C.mouseenter(function(){
 var V = $(this).val();
 $("#"+V).addClass("hover");
    });

Original issue reported on code.google.com by brian...@gmail.com on 10 Mar 2014 at 1:27