How to detect IE with jQuery
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
if (jQuery.browser.msie) {
// do something IE specific
}
</script>
Note:
- According to jQuery docs the recommended approach is:
http://docs.jquery.com/Utilities/jQuery.support

0 comments:
Post a Comment