We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In IE (9/10) baseURL is ignored, so when the option value is "page1/page2", and the current page is "http://example.com/page1/page3", IE tries to load "http://example.com/page1/page3/page1/page2"
Line 59 should be changed to reflect relative URls and IE9 behaviour, e.g.
var callURL = $(this).val(); if ($.browser.msie && callURL.indexOf("//") == -1 ) { callURL = "/" + callURL; }
Thx!
The text was updated successfully, but these errors were encountered:
Having same problem with IE10. Is this code "replacing" what's on line 59? ie..replace this function..
// Change window location $select.change(function () { window.location.href = $(this).val(); });
Thanks
Sorry, something went wrong.
Yap, i replaced it with the following quick workaround which solved the problem for me:
// Change window location $select.change(function () { var callURL = $(this).val(); if ($.browser.msie && callURL.indexOf("//") == -1 ) { callURL = "/" + callURL; } window.location.href = callURL; });
No branches or pull requests
In IE (9/10) baseURL is ignored, so when the option value is "page1/page2", and the current page is "http://example.com/page1/page3", IE tries to load "http://example.com/page1/page3/page1/page2"
Line 59 should be changed to reflect relative URls and IE9 behaviour, e.g.
var callURL = $(this).val();
if ($.browser.msie && callURL.indexOf("//") == -1 ) {
callURL = "/" + callURL;
}
Thx!
The text was updated successfully, but these errors were encountered: