Skip to content
New issue

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

Enhancement: IE8 & older jQuery support #2

Open
3 tasks done
razvanioan opened this issue Apr 15, 2013 · 0 comments
Open
3 tasks done

Enhancement: IE8 & older jQuery support #2

razvanioan opened this issue Apr 15, 2013 · 0 comments

Comments

@razvanioan
Copy link

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:

  • IE8 was not wrapping at all CAspineTitle into corresponding DIV, thus titles were not rotated 90 degrees:
CAspine.wrapInner('<span class="CAspineTitle">').addClass('CAspine').addClass('CAspine_' + (index + 1));
CAspine.wrapInner('<span class="CAspineTitle" />').addClass('CAspine').addClass('CAspine_' + (index + 1));
  • IE8 & 9 raising errors about localStorage so I completely removed IE from it's support (and forced to use cookies) in localStoreSupport
return !$.browser.msie && 'localStorage' in window && window['localStorage'] !== null;
  • older jQuery support (1.3.2 was my target). Just changed .on() methods to .bind() in all the code.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant