JAVASCRIPT   30
web js
Guest on 6th February 2023 01:38:45 PM


  1. var ua = navigator.userAgent.toLowerCase();
  2. var isIE6 = ua.indexOf("msie 6") > -1;
  3.  
  4. // remove css image flicker
  5. if(isIE6){
  6.     try{
  7.         document.execCommand("BackgroundImageCache", false, true);
  8.     }catch(e){}
  9. }
  10. //png24
  11. if (!!window.DD_belatedPNG) {
  12.     DD_belatedPNG.fix('img,.header .mid .btn_group ul li.login a,.header .mid .searchbox .btn_input,.recommend .recommend_con .item .btn_buy,.routes .routes_left .bd .league ul li .teletext .tip');
  13. };

Raw Paste

Login or Register to edit or fork this paste. It's free.