internet explorer - Jquery multilevel list problem in IE -
first of sorry english...
well, try create sortable list of questions/answers , works in ff not in ie. in ie, when try sort answer (second level li) question , same group answers moves selected question in strange way.
if have idea please let me know. in advance!
add code , should work
$('.answer').mousedown( function(e){ return false; } );
this stop bubbling effect of mousedown event reach parent element sortable.
same thing can accomplished with
$('.answer').mousedown( function(e){ e.stoppropagation(); } );
example http://jsfiddle.net/efdww/20/
Comments
Post a Comment