Hi,
I have a problem: I implemented a jQuery UI slider in a dynamically generated DIV like this:
which works, I can see the slider. But once I click the slider's handle, it (the handle) sticks to the mousepointer even when I released the mousebutton again.
- var sliderdiv = $('<div />').addClass('sliderdiv').css({ 'position': 'absolute', 'width': '200px', 'height': '30px', 'right': '0px', 'top': '-6px', 'background-color': '#FFFFFF', 'border': '1px solid #00FF00', 'display': 'none' }); var slider = $('<div />').addClass('jqueryiu_slider'); $(slider).slider({ orientation: 'horizontal' }); $(sliderdiv).append(slider);
Does anyone have an idea what could be a reason for that?
Thanks
Luke