Search and Top Navigation
#7748 closed bug (duplicate)
Opened September 29, 2011 09:44AM UTC
Closed September 29, 2011 11:54AM UTC
Last modified September 29, 2011 02:15PM UTC
ui slider not working in Internet Explorer 9 [IE9]
Reported by: | yashraj | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.9.0 |
Component: | ui.slider | Version: | 1.7.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
hi,
i am using UISlider in my website but i'm facing problem with IE9. slider works perfect in all browsers(chrome,firefox,safari,IE7,IE8) but when i show website in IE9, i am not able to move select cursor of my slider.
Can anyone Help me on this...?
thank you
Attachments (0)
Change History (8)
Changed September 29, 2011 11:54AM UTC by comment:1
resolution: | → duplicate |
---|---|
status: | new → closed |
Changed September 29, 2011 12:52PM UTC by comment:3
thank you scott.gonzalez for your reply, i used vesion 1.8 but still facing a problem.
what i get to know is there is some problem with IE9 in following code in _mouseMove function
_mouseMove: function (j) {
if (c.browser.msie && !j.button) {
return this._mouseUp(j)
}
if (this._mouseStarted) {
this._mouseDrag(j);
return j.preventDefault()
}
if (this._mouseDistanceMet(j) && this._mouseDelayMet(j)) {
this._mouseStarted = (this._mouseStart(this._mouseDownEvent, j) !== false);
(this._mouseStarted ? this._mouseDrag(j) : this._mouseUp(j))
}
return !this._mouseStarted
},
in this code i came to know that in all browser except IE9 value of "this._mouseStarted" is true so _mouseDrag is called and when i release my mouse it'll go to function "_mouseUp" which is just next to function "_mouseMove". but in IE9 value of "c.browser.msie" is true and so mouseUp is returned and is not able to reach to _mouseDrag(which is in next if case). so i've return below code but still facing a problem cause in my code i am having a function call to mouseDrag but never reach to "_mouseUp". see below code
_mouseMove: function (j) {
if (c.browser.msie && !j.button && document.documentMode < 9) {
return this._mouseUp(j)
}
if (this._mouseStarted) { alert("drag");
this._mouseDrag(j);
return j.preventDefault()
}
if (this._mouseDistanceMet(j) && this._mouseDelayMet(j)) {
this._mouseStarted = (this._mouseStart(this._mouseDownEvent, j) !== false);
(this._mouseStarted ? this._mouseDrag(j) : this._mouseUp(j))
}
return !this._mouseStarted
},
in this code i always have an alert of "drag" and not able to reach to _mouseUp. can you help me on this?? how can i solve this slider problem of IE9?
Changed September 29, 2011 12:55PM UTC by comment:4
Did you use a version >= 1.8.6? This definitely works for me and everyone else.
Changed September 29, 2011 01:39PM UTC by comment:5
i used "jquery-ui-1.8.6.custom.min.js" and i also tried "jquery-ui-1.8.16.custom.min.js" non of these is working for me...
Changed September 29, 2011 01:49PM UTC by comment:6
So http://jqueryui.com/demos/slider/default.html doesn't work for you?
Changed September 29, 2011 02:01PM UTC by comment:7
http[://]www.finance.samif[.]com/Koelkast this is my site url.. this looks fine and also slider is working in all browsers except IE9. check this in IE9. slider will be in left column. (don't look at design in IE9 :-) it's bad now ).
thank you so much for support scott.gonzalez
I look forward for your reply.
Thanks
Changed September 29, 2011 02:15PM UTC by comment:8
_comment0: | 1) You're still using 1.7.1 on your site. \ 2) We don't provide support for full sites, only reduced test cases. \ 3) You never answered my question of whether the demo works for you. \ \ At this point, I will no longer respond to any comments on this ticket. Please use the [http://forum.jquery.com forums] if you need more help. → 1317305743771067 |
---|
1) You're still using 1.7.1 on your site.
2) We don't provide support for full sites, only reduced test cases.
3) You never answered my question of whether the demo works for you.
At this point, I will no longer respond to any comments on this ticket. Please use the forums if you need more help.
1.7 is legacy, you should really use a supported version of jQuery UI.