DETECTAR NAVEGADOR IE CON JQUERY


/ Published in: jQuery
Save to your folder(s)

Se detecta el tipo de navegador, util para diseño web.


Copy this code and paste it in your HTML
  1. if ($.browser.msie && $.browser.version >= 7){
  2.  
  3. //Código de ejemplo
  4. $("#wrap55").css("margin-top", "-15px");
  5. $("#finalcaja").css("margin-top", "-17px");
  6. $("#navbar55, #navbar55 ul").css("margin-top", "2px");
  7. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.