Having problem with codylindley DOMWindow and jquery UI Slider on IE:
I'm using the Cody Lindley DOMWindow script, modeless, draggable for a popup form that has a jquery UI slider. All is working well except with IE - the problem is when I slide the handle the window drags. If I position the cursor slightly to the left or right of the slider handle, it slides fine.
Any help would be appreciated.
My slide event is as follow:
- slide: function(e, ui){
- if(e.target==this)
- {
- $j('input:text[name=rate]').val(ui.value+'%');
- rss.updateCalc(1);
- e.stopPropagation();
- }
- }