Guest User

Untitled

a guest
Feb 20th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. function disableCssOnEdge(){
  2. var sAgent = window.navigator.userAgent;
  3. var Idx = sAgent.indexOf("MSIE");
  4.  
  5. // If IE, return version number.
  6. if (Idx > 0
  7. || !!navigator.userAgent.match(/Trident\/7\./)
  8. || window.navigator.userAgent.indexOf("Edge") > -1) {
  9. $('.footer-main').css({
  10. top: 0,
  11. marginBottom: 0
  12. });
  13. $('#map').css('height', '400px')
  14. }
  15. }
  16. disableCssOnEdge();
Add Comment
Please, Sign In to add comment