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
Sometimes maybe we're restricted to use some older jQuery frameworks or asked by the client for IE8 support.
Bellow is what I've done on order to have this working on IE8 & jQuery 1.3.2, maybe others are interested in:
CAspineTitle
CAspine.wrapInner('<span class="CAspineTitle">').addClass('CAspine').addClass('CAspine_' + (index + 1));
CAspine.wrapInner('<span class="CAspineTitle" />').addClass('CAspine').addClass('CAspine_' + (index + 1));
localStorage
localStoreSupport
return !$.browser.msie && 'localStorage' in window && window['localStorage'] !== null;
.on()
.bind()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Sometimes maybe we're restricted to use some older jQuery frameworks or asked by the client for IE8 support.
Bellow is what I've done on order to have this working on IE8 & jQuery 1.3.2, maybe others are interested in:
CAspineTitle
into corresponding DIV, thus titles were not rotated 90 degrees:localStorage
so I completely removed IE from it's support (and forced to use cookies) inlocalStoreSupport
.on()
methods to.bind()
in all the code.The text was updated successfully, but these errors were encountered: